- Jul 08, 2020
-
-
Jake Goulding authored
The new ARM-based platform doesn't need these as there's no legacy constraints. Tested via **demo.c** ```c int main() { fstat(0, NULL); fstatat(0, NULL, NULL, 0); lstat(NULL, NULL); stat(NULL, NULL); readdir(NULL); readdir_r(NULL, NULL, NULL); } ``` **Compilation** ```none % SDKROOT=/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.0.sdk MACOSX_DEPLOYMENT_TARGET=11.5 cc -arch arm64 demo.c % nm a.out 0000000100008030 d __dyld_private 0000000100000000 T __mh_execute_header U _fstat U _fstatat U _lstat 0000000100003e64 T _main U _readdir U _readdir_r U _stat U dyld_stub_binder ``` This has also been experimentally compiled on a Developer Transition Kit.
-
- Jul 07, 2020
-
-
Alan Somers authored
Fixes #1775
-
- Jul 06, 2020
-
-
Dan Gohman authored
This adds various WASI libc definitions to the Rust libc bindings that I needed while porting some applications to WASI. It also removes the `pause` binding since newer versions of WASI libc have removed this function as well. (WASI currently has no syscall with this functionality.)
-
Greg V authored
Plus, add new constants for sysctls that give names to existing magic numbers. https://reviews.freebsd.org/rS350749 https://reviews.freebsd.org/rS352486
-
Greg V authored
-
Greg V authored
Wide chars are unsigned when normal chars are
-
Greg V authored
-
Greg V authored
sys/stat.h is a machine-independent header, but it has ifdefs for i386. The version that was called x86_64.rs should be used on powerpc64 too, but I don't have a machine to test that on.
-
Greg V authored
I just got 'libxul.so: Undefined symbol "mq_close"' when rebuilding Firefox.. How did no one catch this before?? This is correct for both FreeBSD and DragonFly: https://github.com/freebsd/freebsd/blob/master/lib/librt/Symbol.map https://github.com/DragonFlyBSD/DragonFlyBSD/blob/e7ab884bd49753f8884eb597d10d6569a08fa0df/lib/librt/mq.c https://github.com/DragonFlyBSD/DragonFlyBSD/blob/e7ab884bd49753f8884eb597d10d6569a08fa0df/lib/librt/aio.c
-
- Jul 03, 2020
-
-
Marcin Konicki authored
Hi, Could you add some missing Haiku constants (i'm guessing they were added after Haiku port was last updated)? These are defined in `unistd.h`: https://github.com/haiku/haiku/blob/194a45c6b4183083afdc7fac7b9e85f9162cdeb2/headers/posix/unistd.h#L134-L137
-
Alan Somers authored
-
- Jul 02, 2020
-
-
Yuki Okushi authored
-
Alex Crichton authored
This ended up just getting copied from Linux as it appears to be the same.
-
Yuki Okushi authored
-
Dan Gohman authored
These declarations are the same as those for other platforms.
-
- Jul 01, 2020
-
-
Yuki Okushi authored
-
kolapapa authored
-
- Jun 30, 2020
-
-
Andrew Walbran authored
In particular: Add timerfd constants and functions, from sys/timerfd.h. Add EFD_SEMAPHORE and group all EFD_ constants together. Add sigtimedwait function, from signal.h. Add missing fallocate constants and functions, from linux/falloc.h and fcntl.h. Add xattr functions, from sys/xattr.h. Add SCHED_ and SEEK_ constants, from linux/sched.h and bits/seek_constants.h. Add rlimit functions, from sys/resource.h. Add RENAME_ constants, from stdio.h. Add ino64_t type, from sys/types.h.
-
Andrew Walbran authored
-
Alan Somers authored
-
- Jun 26, 2020
-
-
Jason King authored
-
Bill Fraser authored
-
- Jun 22, 2020
-
-
Simon Wörner authored
-
Markus Reiter authored
-
Markus Reiter authored
-
- Jun 09, 2020
-
-
Patrick Mooney authored
-
- Jun 08, 2020
-
-
Patrick Mooney authored
-
- Jun 04, 2020
-
-
Brian Cain authored
This commit defines ETIMEDOUT, SIGSTKSZ, MINSIGSTKSZ
-
- May 29, 2020
-
-
Yuki Okushi authored
-
- May 28, 2020
-
-
Yuki Okushi authored
-
- May 27, 2020
-
-
Joshua M. Clulow authored
SmartOS is a downstream distribution of illumos, and carries a number of additional patches that are not commonly available in other illumos distributions. They are also not found in Oracle Solaris. With these removed, the libc tests pass on a stock illumos system running OpenIndiana.
-
- May 26, 2020
-
-
Yuki Okushi authored
This is required on rust-lang/rust.
-
- May 25, 2020
-
-
Yuki Okushi authored
-
- May 23, 2020
-
-
Joshua Abraham authored
-
- May 22, 2020
-
-
Markus Reiter authored
-
Markus Reiter authored
-
Yuki Okushi authored
-
- May 21, 2020
-
-
Yuki Okushi authored
-
Valdemar Erk authored
This patchs adds missing flag values for getnameinfo() on FreeBSD, the following flags have been added from the FreeBSD tree. /* * Flag values for getnameinfo() */ #define NI_NOFQDN 0x00000001 #define NI_NUMERICHOST 0x00000002 #define NI_NAMEREQD 0x00000004 #define NI_NUMERICSERV 0x00000008 #define NI_DGRAM 0x00000010 #define NI_NUMERICSCOPE 0x00000020 Signed-off-by:
Valdemar Erk <valdemar@erk.io>
-