- Jan 27, 2013
-
-
Christoph Hellwig authored
-
- Jan 21, 2013
-
-
Christoph Hellwig authored
-
Christoph Hellwig authored
note that as of now all functioanlity related to file or pthread locking is not implemented or stubbed out.
-
Christoph Hellwig authored
-
Christoph Hellwig authored
-
- Jan 20, 2013
-
-
Avi Kivity authored
confstr(NULL) is defined to return the size of required storage; use a temporary string to make it not fault.
-
- Jan 19, 2013
-
-
Christoph Hellwig authored
-
Christoph Hellwig authored
-
- Jan 18, 2013
-
-
Christoph Hellwig authored
-
- Jan 17, 2013
-
-
Christoph Hellwig authored
-
Christoph Hellwig authored
-
Christoph Hellwig authored
-
- Jan 16, 2013
-
-
Christoph Hellwig authored
Import the whole string library, as well as the ctype functions from the musl C library. Must is a BSD licensed library that aims to be API and mostly ABI compatible with glibc, so it's our easiest way to provide the ABI we need without reinventing the wheel. I will import more of the traditional non-syscall C library code from it and expect libc/ to eventually mostly consist of slightly modified musl code.
-
- Jan 15, 2013
-
-
Christoph Hellwig authored
-
Christoph Hellwig authored
-
- Jan 11, 2013
-
-
Christoph Hellwig authored
-
- Jan 10, 2013
-
-
Avi Kivity authored
-
Avi Kivity authored
Do nothing yet (used for CLOEXEC, meaningless for us).
-
Avi Kivity authored
-
Christoph Hellwig authored
Various changes to fit into the OSv environment. This also includes a ramfs in-memory full filesystem. Bootfs is rewritten as a simple unpacker into ramfs, and the fs class is modified to wrap the VFS instead of being an abstract subclass.
-
Avi Kivity authored
-
Avi Kivity authored
-
Avi Kivity authored
-
- Jan 09, 2013
-
-
Avi Kivity authored
-
Christoph Hellwig authored
-
Christoph Hellwig authored
-
- Jan 08, 2013
-
-
Avi Kivity authored
-
Avi Kivity authored
-
Avi Kivity authored
-
- Jan 07, 2013
-
-
Avi Kivity authored
libstdc++ uses this semistandard function in its locale implementation.
-
- Jan 06, 2013
-
-
Avi Kivity authored
-
- Jan 03, 2013
-
-
Avi Kivity authored
-
- Jan 01, 2013
-
-
Avi Kivity authored
The real thing is working already.
-
- Dec 30, 2012
-
-
Avi Kivity authored
-
- Dec 28, 2012
-
-
Avi Kivity authored
This allows generic code to include arch specific code, by eliding the arch/x64/ prefix.
-
Avi Kivity authored
We will never build a single program containing code from two architectures, so segregating arch-specific code into a separate namespace is not solving any problem. However it makes using arch-specific code from generic code impossible. Remove the 86 namespace to fix this.
-
- Dec 27, 2012
-
-
Avi Kivity authored
-
Avi Kivity authored
-
- Dec 26, 2012
-
-
Avi Kivity authored
This implementation stores small objects in pools of similar-sized objects, while large objects are allocated using a first-fit algorithm. There is also a specialized interface for allocating aligned pages.
-
- Dec 23, 2012
-
-
Avi Kivity authored
-