- Jun 15, 2017
-
-
James Cowgill authored
In addition, move the syscalls to the mips module file because they are all identical in mips32 and mips64.
-
James Cowgill authored
As a result of this commit, glob64_t will be added to mips64.
-
- Apr 25, 2017
-
-
Kelvin Ly authored
-
- Apr 24, 2017
-
-
Anatol Pomozov authored
MINSIGSTKSZ is a minimum size of process stack allowed
-
- Apr 21, 2017
- Apr 20, 2017
-
-
Kelvin Ly authored
-
- Apr 19, 2017
-
-
Bryant Mairs authored
-
Bryant Mairs authored
-
- Mar 01, 2017
-
-
Zac Berkowitz authored
-
- Feb 21, 2017
-
-
Zac Berkowitz authored
Having the B* constants in `unix/notbsd/mod.rs` passed CI tests except for powerpc. So we'll try moving into individual arch/ABI that the CI tests cover for now. This commit should pass for the following: - mips32 - mips64 - musl32 - musl64 - android32 - android64 - arm32 - aarch64 - x86 - x86_64 Then we can figure out the powerpc variants. This also prevents potential errors for sparc64 which is not covered by CI.
-
- Dec 31, 2016
-
-
Jorge Aparicio authored
-
- Nov 14, 2016
-
-
Wang Xuerui authored
MIPS32 and MIPS64 userspaces are mostly the same save the obvious ABI difference, hence most of the const definitions could be shared. This commit is not introducing any new significant additions, but mostly just shuffles the existing files around to make the directory structure more similar to the other, more mature platforms. The structs and extern fn definitions are not touched. Plus a couple of new consts for MIPS64 to match MIPS32 coverage: * `RLIM_INFINITY` * `SYS_gettid` Passed `libc-test` on Gentoo MIPS64el (n64 ABI), on a Loongson 3A2000 box. The test suite itself needs some more love to actually compile cleanly on MIPS (`ctest` transitively depends on ancient `libc` version which doesn't build on MIPS), but let's save that for another day.
-
Alan Somers authored
musl has a different aiocb definition; netbsd and OSX have some symbol renaming, and lwpid_t is signed on freebsd
-
- Nov 11, 2016
-
-
Steven Allen authored
-
- Oct 05, 2016
-
-
Ian Denhardt authored
Musl 1.1.14 defined these incorrectly, and we followed suit. They're fixed in 1.1.15, so we fix them here as well. Since these are kernel ABIs, the correct values match other libc implementations, so we move them up to the topmost module possible.
-
- Sep 18, 2016
-
-
Alexander Schlarb authored
-
- Sep 04, 2016
-
-
Jorge Aparicio authored
-
- Sep 03, 2016
-
-
Jorge Aparicio authored
-
- Aug 27, 2016
-
-
Alex Crichton authored
-
- Aug 10, 2016
-
-
Philipp Matthias Schaefer authored
-
- Jul 21, 2016
-
-
Tomasz Miąsko authored
Following types and function have been added: * pthread_cond_init * pthread_condattr_t * pthread_condattr_init * pthread_condattr_destroy * pthread_condattr_setclock [0] * pthread_condattr_getclock [0][1] [0] Not available on OSX. [1] May be unavailable on NetBSD, it is a very recent addition. Left out from openbsdlike hierarchy for now.
-
- Jul 12, 2016
-
-
Sergey Bugaev authored
Copy them into individual platform files instead. Fixes musl build.
-
- Jul 11, 2016
-
-
sateffen authored
-
- Jul 10, 2016
-
-
Steffen W authored
-
- Jun 05, 2016
-
-
Steven Fackler authored
-
- May 27, 2016
-
-
Rick Richardson authored
-
- May 20, 2016
-
-
Raphael Cohn authored
Sadly, the sysinfo struct varies slightly between Musl and Glibc / Bionic. This means that users need to be careful when using the uptime, and should always cast it to a signed value. Why uptime can be signed is beyond me...
-
- May 13, 2016
-
-
Alex Crichton authored
-
- Apr 28, 2016
-
-
Kamal Marhubi authored
A bunch of definitions were duplicated across, eg, android and linux. This commit pulls these up to higher levels where they can be shared.
-
- Apr 05, 2016
-
-
A.J. Gardner authored
There are many constants defined by langinfo, but we have the new types, locale_t and nl_item. We also have several functions, not all of which exist for every platform: nl_langinfo nl_langinfo_l newlocale duplocale freelocale uselocale querylocale
-
- Mar 31, 2016
-
-
A.J. Gardner authored
Linux-likes have more locale categories than the BSDs (except for musl). We define the common set of categories at the src/unix/notbsd/mod.rs level, and leave the rest to the platform-specific modules.
-
- Mar 07, 2016
-
-
Gabriele Svelto authored
-
- Mar 06, 2016
-
-
Dave Hylands authored
-
Dave Hylands authored
-
- Mar 02, 2016
-
-
Alex Crichton authored
It's tough to have PRs bounce or to have a back and forth with contributors about minor style quibbles. Sometimes it ends up just being easier to fix style after the fact, but let's add some automation to help this! This commit adds a script to run on CI and locally to verify the style of this repository. There's a few stylistic guidelines to ensure that definitions are understandable across the jungle of modules. This consistency should help assist readability for any future readers!
-
- Feb 05, 2016
-
-
Peter Jin authored
-
Alex Crichton authored
-
- Jan 29, 2016
-
-
Brian Anderson authored
I've tested x86 against C locally, but not arm or asmjs. I added the arm definitions because asmjs's C is derived from arms. Mysteriously, my locally-built musl does not contain a definition for _SC_2_C_VERSION, so I just removed it.
-