kc3-lang/libffi/src/closures.c

Branch :


Log

Author Commit Date CI Message
bc4fc07a 2015-12-21 00:37:06 Fixed #181 -- Corrected problems with ARMv7 build under iOS. Based on a patch from @fealebenpae, with input from @SolaWing and @rth7680, and testing from @superdump.
1cee07be 2014-06-12 06:30:59 Remove compiler warning
c1166d4f 2014-05-12 19:44:08 closures: Check for mkostemp(3)
8daeed95 2014-05-11 22:54:58 closures: Create temporary file with O_TMPFILE and O_CLOEXEC when available The open_temp_exec_file_dir function can create a temporary file without file system accessible link. If the O_TMPFILE flag is not defined (old Linux kernel or libc) the behavior is unchanged. The open_temp_exec_file_name function now need a new argument "flags" (like O_CLOEXEC) used for temporary file creation. The O_TMPFILE flag allow temporary file creation without race condition. This feature/fix prevent another process to access the (future) executable file from the file system. The O_CLOEXEC flag automatically close the temporary file for any execve. This avoid transmitting (executable) file descriptor to a child process.
52b34570 2014-05-11 09:55:28 Check /proc/self/status for PaX status.
11d7aa9d 2014-02-28 01:06:48 Merge pull request #46 from makotokato/android-clang Fix build failure when using clang for Android
67fbef3b 2014-02-28 01:06:48 Merge pull request #46 from makotokato/android-clang Fix build failure when using clang for Android
9da28b44 2013-12-30 16:23:21 Darwin/x86_64: Fix 64-bit type shortening warnings
3dc3f32c 2013-12-05 16:23:25 Undo iOS ARM64 changes.
0612081e 2013-11-30 03:03:00 Darwin: Misc size_t warnings
128cd1d2 2013-10-08 06:45:51 Fix spelling errors
3b44d411 2013-07-10 15:34:53 Fix build failure when using clang for Android clang for Android generates __gnu_linux__ define, but gcc for Android doesn't. So we should add check it for Android
12b1886d 2013-03-17 18:32:12 cygwin fix & updates for 3.0.13
d08124be 2013-03-17 18:32:12 cygwin fix & updates for 3.0.13
e944b8c7 2012-10-30 14:06:09 Add PaX work-around
6a6e7f86 2011-11-12 16:20:42 Fix kfreebsd
c411f140 2011-11-12 07:32:36 Fix ax_enable_builddir macro on BSD systems
049d8386 2011-08-22 14:50:10 Many new patches
747d6c32 2011-02-09 14:56:23 Add Interix support
0cad4386 2011-02-09 06:11:46 Add ChangeLog entry. Fix copyright headers.
1106229a 2011-02-08 19:20:09 Add iOS support
0e584399 2011-02-08 07:52:40 Refresh from GCC
2db72615 2010-11-21 10:50:56 Rebase
83038cf2 2010-09-19 14:36:45 Implement FFI_EXEC_TRAMPOLINE_TABLE allocator for iOS/ARM. This provides working closure support on iOS/ARM devices where PROT_WRITE|PROT_EXEC is not permitted. The code passes basic smoke tests, but requires further review.
9e119644 2010-09-19 10:43:06 Add a hard-coded FFI_EXEC_TRAMPOLINE_TABLE arm implementation. This implements support for re-mapping a shared table of executable trampolines directly in front of a writable configuration page, working around PROT_WRITE restrictions for sandboxed applications on Apple's iOS. This implementation is for testing purposes; a proper allocator is still necessary, and ARM-specific code needs to be moved out of src/closures.c.
eaf444ea 2010-07-10 08:59:09 Fix selinux test
f2c2a4fc 2010-04-13 10:19:28 Remove warnings and add OS/2 support
c3042afa 2010-01-01 08:08:02 Reset quilt patches post 3.0.9 merge with GCC
0cfe60e9 2009-12-29 10:06:04 3.0.9rc12
39c8792e 2009-12-25 21:52:28 3.0.9rc7
115ab36f 2009-12-24 00:22:00 Update missing changes for 3.0.9r4.
e4a91de7 2009-10-05 00:16:17 From Abdulaziz Ghuloum. Adds special case for Snow Leopard.
c6dddbd0 2009-10-04 08:11:33 Initial commit