this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Some initial work in using dylibs for Darling libs

+2122 -1800
+3 -3
CMakeLists.txt
··· 25 25 SET(IGNORED_WARNINGS "${IGNORED_WARNINGS} -Wno-expansion-to-defined") 26 26 endif (${CMAKE_C_COMPILER_ID} STREQUAL "Clang" AND NOT ${CMAKE_C_COMPILER_VERSION} VERSION_LESS "3.9") 27 27 28 - SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -m${BITS} -D__APPLE_CC__ ${IGNORED_WARNINGS}") 29 - SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -m${BITS} -D__APPLE_CPP__ ${IGNORED_WARNINGS}") 28 + SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -m${BITS} ${IGNORED_WARNINGS}") 29 + SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -m${BITS} ${IGNORED_WARNINGS}") 30 30 31 31 SET(CMAKE_ASM_FLAGS "-m${BITS}") 32 32 SET(CMAKE_ASM-ATT_FLAGS "-m${BITS}") ··· 34 34 message(STATUS "Building for ${CMAKE_SYSTEM_PROCESSOR}, CFLAGS: ${CMAKE_C_FLAGS}, libdir: ${CMAKE_INSTALL_LIBDIR}") 35 35 36 36 # --as-needed breaks Darling 37 - set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,--no-as-needed") 37 + #set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,--no-as-needed") 38 38 39 39 if (BITS EQUAL 32) 40 40 # Prevent building Darling executables (e.g. Bash)
+1 -1
kernel-include/sys/cdefs.h
··· 418 418 /* 419 419 * symbol versioning macros 420 420 */ 421 - #ifndef DARLING 421 + #ifndef DARLING__DISABLED 422 422 #define __DARWIN_ALIAS(sym) __asm("_" __STRING(sym) __DARWIN_SUF_UNIX03) 423 423 #define __DARWIN_ALIAS_C(sym) __asm("_" __STRING(sym) __DARWIN_SUF_NON_CANCELABLE __DARWIN_SUF_UNIX03) 424 424 #define __DARWIN_ALIAS_I(sym) __asm("_" __STRING(sym) __DARWIN_SUF_64_BIT_INO_T __DARWIN_SUF_UNIX03)
+6 -6
platform-include/architecture/i386/asm_help.h
··· 304 304 305 305 #if defined(__DYNAMIC__) 306 306 #if defined(__i386__) 307 - #ifndef DARLING 307 + #ifndef DARLING__DISABLED 308 308 #define PICIFY(var) \ 309 309 call 1f ; \ 310 310 1: ; \ ··· 332 332 call *%edx 333 333 #elif defined(__x86_64__) 334 334 #define CALL_EXTERN_AGAIN(func) \ 335 - call func@PLT 335 + call func 336 336 #endif 337 337 338 338 #if defined(__i386__) 339 - #ifndef DARLING 339 + #ifndef DARLING__DISABLED 340 340 #define NON_LAZY_STUB(var) \ 341 341 .section __IMPORT,__pointers,non_lazy_symbol_pointers ; \ 342 342 L ## var ## __non_lazy_ptr: ; \ ··· 361 361 NON_LAZY_STUB(func) 362 362 #elif defined(__x86_64__) 363 363 #define BRANCH_EXTERN(func) \ 364 - jmp func@PLT 364 + jmp func 365 365 #endif 366 366 367 367 #if defined(__i386__) ··· 384 384 #endif 385 385 386 386 #if defined(__i386__) 387 - #ifndef DARLING 387 + #ifndef DARLING__DISABLED 388 388 #define EXTERN_TO_REG(var, reg) \ 389 389 call 1f ; \ 390 390 1: ; \ ··· 409 409 #endif 410 410 411 411 #else 412 - #define BRANCH_EXTERN(func) jmp func@PLT 412 + #define BRANCH_EXTERN(func) jmp func 413 413 #define PUSH_EXTERN(var) push var@GOTPCREL 414 414 #define CALL_EXTERN(func) call func@PLT 415 415 #define CALL_EXTERN_AGAIN(func) call func@PLT
+1 -1
platform-include/sys/cdefs.h
··· 485 485 /* 486 486 * symbol versioning macros 487 487 */ 488 - #ifndef DARLING 488 + #ifndef DARLING__DISABLED 489 489 #define __DARWIN_ALIAS(sym) __asm("_" __STRING(sym) __DARWIN_SUF_UNIX03) 490 490 #define __DARWIN_ALIAS_C(sym) __asm("_" __STRING(sym) __DARWIN_SUF_NON_CANCELABLE __DARWIN_SUF_UNIX03) 491 491 #define __DARWIN_ALIAS_I(sym) __asm("_" __STRING(sym) __DARWIN_SUF_64_BIT_INO_T __DARWIN_SUF_UNIX03)
+234 -77
platform-include/sys/fcntl.h
··· 1 + // Modified by Lubos Dolezel for Darling 1 2 /* 2 - * Copyright (c) 2000-2013 Apple Inc. All rights reserved. 3 + * Copyright (c) 2000-2007 Apple Inc. All rights reserved. 3 4 * 4 5 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ 5 6 * ··· 77 78 */ 78 79 #include <sys/_types.h> 79 80 #include <sys/cdefs.h> 81 + #ifndef KERNEL 80 82 #include <Availability.h> 83 + #endif 81 84 82 85 /* We should not be exporting size_t here. Temporary for gcc bootstrapping. */ 83 - #include <sys/_types/_size_t.h> 84 - #include <sys/_types/_mode_t.h> 85 - #include <sys/_types/_off_t.h> 86 - #include <sys/_types/_pid_t.h> 86 + #ifndef _SIZE_T 87 + #define _SIZE_T 88 + typedef __darwin_size_t size_t; 89 + #endif 90 + 91 + #ifndef _MODE_T 92 + typedef __darwin_mode_t mode_t; 93 + #define _MODE_T 94 + #endif 95 + 96 + #ifndef _OFF_T 97 + typedef __darwin_off_t off_t; 98 + #define _OFF_T 99 + #endif 100 + 101 + #ifndef _PID_T 102 + typedef __darwin_pid_t pid_t; 103 + #define _PID_T 104 + #endif 87 105 88 106 /* 89 107 * File status flags: these are used by open(2), fcntl(2). ··· 112 130 #endif 113 131 #define O_NONBLOCK 0x0004 /* no delay */ 114 132 #define O_APPEND 0x0008 /* set append mode */ 115 - 116 - #include <sys/_types/_o_sync.h> 117 - 133 + #ifndef O_SYNC /* allow simultaneous inclusion of <aio.h> */ 134 + #define O_SYNC 0x0080 /* synch I/O file integrity */ 135 + #endif 118 136 #if !defined(_POSIX_C_SOURCE) || defined(_DARWIN_C_SOURCE) 119 137 #define O_SHLOCK 0x0010 /* open with shared file lock */ 120 138 #define O_EXLOCK 0x0020 /* open with exclusive file lock */ ··· 125 143 #define O_CREAT 0x0200 /* create if nonexistant */ 126 144 #define O_TRUNC 0x0400 /* truncate to zero length */ 127 145 #define O_EXCL 0x0800 /* error if already exists */ 128 - 129 - #if __DARWIN_C_LEVEL >= 200809L 130 - /* 131 - * Descriptor value for the current working directory 132 - */ 133 - #define AT_FDCWD -2 134 - 135 - /* 136 - * Flags for the at functions 137 - */ 138 - #define AT_EACCESS 0x0010 /* Use effective ids in access check */ 139 - #define AT_SYMLINK_NOFOLLOW 0x0020 /* Act on the symlink itself not the target */ 140 - #define AT_SYMLINK_FOLLOW 0x0040 /* Act on target of symlink */ 141 - #define AT_REMOVEDIR 0x0080 /* Path refers to directory */ 146 + #ifdef KERNEL 147 + #define FMARK 0x1000 /* mark during gc() */ 148 + #define FDEFER 0x2000 /* defer for next gc pass */ 149 + #define FHASLOCK 0x4000 /* descriptor holds advisory lock */ 142 150 #endif 143 - 144 151 #if !defined(_POSIX_C_SOURCE) || defined(_DARWIN_C_SOURCE) 145 152 #define O_EVTONLY 0x8000 /* descriptor requested for event notifications only */ 146 153 #endif 147 154 155 + #ifdef KERNEL 156 + #define FWASWRITTEN 0x10000 /* descriptor was written */ 157 + #endif 148 158 149 159 #define O_NOCTTY 0x20000 /* don't assign controlling terminal */ 150 160 161 + #ifdef KERNEL 162 + #define FNOCACHE 0x40000 /* fcntl(F_NOCACHE, 1) */ 163 + #define FNORDAHEAD 0x80000 /* fcntl(F_RDAHEAD, 0) */ 164 + #endif 151 165 152 166 #if !defined(_POSIX_C_SOURCE) || defined(_DARWIN_C_SOURCE) 153 167 #define O_DIRECTORY 0x100000 154 168 #define O_SYMLINK 0x200000 /* allow open of a symlink */ 155 169 #endif 156 170 157 - #include <sys/_types/_o_dsync.h> 171 + #ifndef O_DSYNC /* allow simultaneous inclusion of <aio.h> */ 172 + #define O_DSYNC 0x400000 /* synch I/O data integrity */ 173 + #endif 158 174 175 + #ifdef KERNEL 176 + #define FNODIRECT 0x800000 /* fcntl(F_NODIRECT, 1) */ 177 + #endif 159 178 160 179 #if __DARWIN_C_LEVEL >= 200809L 161 180 #define O_CLOEXEC 0x1000000 /* implicitly set FD_CLOEXEC */ 162 181 #endif 163 182 183 + #ifdef KERNEL 184 + #define FENCRYPTED 0x2000000 185 + #endif 164 186 165 - 187 + #ifdef KERNEL 188 + #define FSINGLE_WRITER 0x4000000 /* fcntl(F_SINGLE_WRITER, 1) */ 189 + #endif 166 190 167 191 /* Data Protection Flags */ 168 192 #if !defined(_POSIX_C_SOURCE) || defined(_DARWIN_C_SOURCE) ··· 170 194 #endif 171 195 172 196 197 + #ifdef KERNEL 198 + /* convert from open() flags to/from fflags; convert O_RD/WR to FREAD/FWRITE */ 199 + #define FFLAGS(oflags) ((oflags) + 1) 200 + #define OFLAGS(fflags) ((fflags) - 1) 201 + 202 + /* bits to save after open */ 203 + #define FMASK (FREAD|FWRITE|FAPPEND|FASYNC|FFSYNC|FFDSYNC|FNONBLOCK) 204 + /* bits settable by fcntl(F_SETFL, ...) */ 205 + #define FCNTLFLAGS (FAPPEND|FASYNC|FFSYNC|FFDSYNC|FNONBLOCK) 206 + #endif 173 207 174 208 /* 175 209 * The O_* flags used to have only F* names, which were used in the kernel ··· 211 245 #define F_GETLK 7 /* get record locking information */ 212 246 #define F_SETLK 8 /* set record locking information */ 213 247 #define F_SETLKW 9 /* F_SETLK; wait if blocked */ 214 - #if __DARWIN_C_LEVEL >= __DARWIN_C_FULL 215 - #define F_SETLKWTIMEOUT 10 /* F_SETLK; wait if blocked, return on timeout */ 216 - #endif /* __DARWIN_C_LEVEL >= __DARWIN_C_FULL */ 248 + #define F_SETLKWTIMEOUT 10 217 249 #if !defined(_POSIX_C_SOURCE) || defined(_DARWIN_C_SOURCE) 218 250 #define F_FLUSH_DATA 40 219 251 #define F_CHKCLEAN 41 /* Used for regression test */ ··· 221 253 #define F_SETSIZE 43 /* Truncate a file without zeroing space */ 222 254 #define F_RDADVISE 44 /* Issue an advisory read async with no copy to user */ 223 255 #define F_RDAHEAD 45 /* turn read ahead off/on for this fd */ 224 - /* 225 - * 46,47 used to be F_READBOOTSTRAP and F_WRITEBOOTSTRAP 226 - */ 256 + #define F_READBOOTSTRAP 46 /* Read bootstrap from disk */ 257 + #define F_WRITEBOOTSTRAP 47 /* Write bootstrap on disk */ 227 258 #define F_NOCACHE 48 /* turn data caching off/on for this fd */ 228 259 #define F_LOG2PHYS 49 /* file offset to device offset */ 229 260 #define F_GETPATH 50 /* return the full path of the fd */ ··· 233 264 #define F_THAW_FS 54 /* "thaw" all fs operations */ 234 265 #define F_GLOBAL_NOCACHE 55 /* turn data caching off/on (globally) for this file */ 235 266 267 + #ifdef PRIVATE 268 + #define F_OPENFROM 56 /* SPI: open a file relative to fd (must be a dir) */ 269 + #define F_UNLINKFROM 57 /* SPI: open a file relative to fd (must be a dir) */ 270 + #define F_CHECK_OPENEVT 58 /* SPI: if a process is marked OPENEVT, or in O_EVTONLY on opens of this vnode */ 271 + #endif /* PRIVATE */ 236 272 237 273 #define F_ADDSIGS 59 /* add detached signatures */ 238 274 275 + #define F_MARKDEPENDENCY 60 /* this process hosts the device supporting the fs backing this fd */ 239 276 240 277 #define F_ADDFILESIGS 61 /* add signature from same file (used by dyld for shared libs) */ 241 278 ··· 251 288 252 289 /* See F_DUPFD_CLOEXEC below for 67 */ 253 290 291 + #ifdef PRIVATE 292 + #define F_SETSTATICCONTENT 68 /* 293 + * indicate to the filesystem/storage driver that the content to be 294 + * written is usually static. a nonzero value enables it, 0 disables it. 295 + */ 296 + #define F_MOVEDATAEXTENTS 69 /* Swap only the data associated with two files */ 297 + #endif 254 298 255 299 #define F_SETBACKINGSTORE 70 /* Mark the file as being the backing store for another filesystem */ 256 300 #define F_GETPATH_MTMINFO 71 /* return the full path of the FD, but error in specific mtmd circumstances */ 257 301 258 - #define F_GETCODEDIR 72 /* Returns the code directory, with associated hashes, to the caller */ 302 + #define F_GETCODEDIR 72 303 + /* 72 is free. It used to be F_GETENCRYPTEDDATA, which is now removed. */ 259 304 260 305 #define F_SETNOSIGPIPE 73 /* No SIGPIPE generated on EPIPE */ 261 306 #define F_GETNOSIGPIPE 74 /* Status of SIGPIPE for this fd */ ··· 267 312 268 313 #define F_GETPROTECTIONLEVEL 77 /* Get the protection version number for this filesystem */ 269 314 270 - #define F_FINDSIGS 78 /* Add detached code signatures (used by dyld for shared libs) */ 271 - 272 - 315 + #define F_FINDSIGS 78 273 316 274 317 // FS-specific fcntl()'s numbers begin at 0x00010000 and go up 275 318 #define FCNTL_FS_SPECIFIC_BASE 0x00010000 ··· 287 330 #define F_RDLCK 1 /* shared or read lock */ 288 331 #define F_UNLCK 2 /* unlock */ 289 332 #define F_WRLCK 3 /* exclusive or write lock */ 290 - 333 + #ifdef KERNEL 334 + #define F_WAIT 0x010 /* Wait until lock is granted */ 335 + #define F_FLOCK 0x020 /* Use flock(2) semantics for lock */ 336 + #define F_POSIX 0x040 /* Use POSIX semantics for lock */ 337 + #define F_PROV 0x080 /* Non-coalesced provisional lock */ 338 + #define F_WAKE1_SAFE 0x100 /* its safe to only wake one waiter */ 339 + #define F_ABORT 0x200 /* lock attempt aborted (force umount) */ 340 + #endif 291 341 292 342 /* 293 343 * [XSI] The values used for l_whence shall be defined as described 294 344 * in <unistd.h> 295 345 */ 296 - #include <sys/_types/_seek_set.h> 346 + #ifndef SEEK_SET 347 + #define SEEK_SET 0 /* set file offset to offset */ 348 + #define SEEK_CUR 1 /* set file offset to current plus offset */ 349 + #define SEEK_END 2 /* set file offset to EOF plus offset */ 350 + #endif /* !SEEK_SET */ 297 351 298 352 /* 299 353 * [XSI] The symbolic names for file modes for use as values of mode_t 300 354 * shall be defined as described in <sys/stat.h> 301 355 */ 302 - #include <sys/_types/_s_ifmt.h> 356 + #ifndef S_IFMT 357 + /* File type */ 358 + #define S_IFMT 0170000 /* [XSI] type of file mask */ 359 + #define S_IFIFO 0010000 /* [XSI] named pipe (fifo) */ 360 + #define S_IFCHR 0020000 /* [XSI] character special */ 361 + #define S_IFDIR 0040000 /* [XSI] directory */ 362 + #define S_IFBLK 0060000 /* [XSI] block special */ 363 + #define S_IFREG 0100000 /* [XSI] regular */ 364 + #define S_IFLNK 0120000 /* [XSI] symbolic link */ 365 + #define S_IFSOCK 0140000 /* [XSI] socket */ 366 + #if !defined(_POSIX_C_SOURCE) || defined(_DARWIN_C_SOURCE) 367 + #define S_IFWHT 0160000 /* OBSOLETE: whiteout */ 368 + #endif 369 + 370 + /* File mode */ 371 + /* Read, write, execute/search by owner */ 372 + #define S_IRWXU 0000700 /* [XSI] RWX mask for owner */ 373 + #define S_IRUSR 0000400 /* [XSI] R for owner */ 374 + #define S_IWUSR 0000200 /* [XSI] W for owner */ 375 + #define S_IXUSR 0000100 /* [XSI] X for owner */ 376 + /* Read, write, execute/search by group */ 377 + #define S_IRWXG 0000070 /* [XSI] RWX mask for group */ 378 + #define S_IRGRP 0000040 /* [XSI] R for group */ 379 + #define S_IWGRP 0000020 /* [XSI] W for group */ 380 + #define S_IXGRP 0000010 /* [XSI] X for group */ 381 + /* Read, write, execute/search by others */ 382 + #define S_IRWXO 0000007 /* [XSI] RWX mask for other */ 383 + #define S_IROTH 0000004 /* [XSI] R for other */ 384 + #define S_IWOTH 0000002 /* [XSI] W for other */ 385 + #define S_IXOTH 0000001 /* [XSI] X for other */ 386 + 387 + #define S_ISUID 0004000 /* [XSI] set user id on execution */ 388 + #define S_ISGID 0002000 /* [XSI] set group id on execution */ 389 + #define S_ISVTX 0001000 /* [XSI] directory restrcted delete */ 390 + 391 + #if !defined(_POSIX_C_SOURCE) || defined(_DARWIN_C_SOURCE) 392 + #define S_ISTXT S_ISVTX /* sticky bit: not supported */ 393 + #define S_IREAD S_IRUSR /* backward compatability */ 394 + #define S_IWRITE S_IWUSR /* backward compatability */ 395 + #define S_IEXEC S_IXUSR /* backward compatability */ 396 + #endif 397 + #endif /* !S_IFMT */ 303 398 304 399 #if !defined(_POSIX_C_SOURCE) || defined(_DARWIN_C_SOURCE) 305 400 /* allocate flags (F_PREALLOCATE) */ ··· 326 421 short l_whence; /* type of l_start */ 327 422 }; 328 423 329 - #include <sys/_types/_timespec.h> 330 - 331 - #if __DARWIN_C_LEVEL >= __DARWIN_C_FULL 332 - /* 333 - * Advisory file segment locking with time out - 334 - * Information passed to system by user for F_SETLKWTIMEOUT 335 - */ 336 - struct flocktimeout { 337 - struct flock fl; /* flock passed for file locking */ 338 - struct timespec timeout; /* timespec struct for timeout */ 339 - }; 340 - #endif /* __DARWIN_C_LEVEL >= __DARWIN_C_FULL */ 341 - 342 424 #if !defined(_POSIX_C_SOURCE) || defined(_DARWIN_C_SOURCE) 343 425 /* 344 426 * advisory file read data type - 345 427 * information passed by user to system 346 428 */ 347 429 430 + #ifdef KERNEL 431 + #pragma pack(4) /* prevent structure padding in kernel */ 432 + #endif /* KERNEL */ 348 433 349 434 struct radvisory { 350 435 off_t ra_offset; 351 436 int ra_count; 352 437 }; 353 438 354 - 355 - /** Information the user passes in to get the codeblobs out of the kernel */ 356 - typedef struct fcodeblobs { 357 - void *f_cd_hash; 358 - size_t f_hash_size; 359 - void *f_cd_buffer; 360 - size_t f_cd_size; 361 - unsigned int *f_out_size; 362 - int f_arch; 363 - int __padding; 364 - } fcodeblobs_t; 365 - 439 + #ifdef KERNEL 440 + #pragma pack() 441 + #endif /* KERNEL */ 366 442 367 443 /* 368 444 * detached code signatures data type - ··· 375 451 void *fs_blob_start; 376 452 size_t fs_blob_size; 377 453 } fsignatures_t; 454 + #ifdef KERNEL 455 + /* LP64 version of fsignatures. all pointers 456 + * grow when we're dealing with a 64-bit process. 457 + * WARNING - keep in sync with fsignatures 458 + */ 459 + 460 + typedef struct user32_fsignatures { 461 + off_t fs_file_start; 462 + user32_addr_t fs_blob_start; 463 + user32_size_t fs_blob_size; 464 + } user32_fsignatures_t; 465 + 466 + typedef struct user_fsignatures { 467 + off_t fs_file_start; /* offset of Mach-O image in FAT file */ 468 + user_addr_t fs_blob_start; /* F_ADDSIGS: mem address of signature*/ 469 + /* F_ADDFILESIGS: offset of signature */ 470 + /* in Mach-O image */ 471 + user_size_t fs_blob_size; /* size of signature blob */ 472 + } user_fsignatures_t; 473 + #endif /* KERNEL */ 378 474 379 475 /* lock operations for flock(2) */ 380 476 #define LOCK_SH 0x01 /* shared file lock */ ··· 400 496 void *fbt_buffer; /* IN: buffer to be read/written */ 401 497 } fbootstraptransfer_t; 402 498 499 + #ifdef KERNEL 500 + /* LP64 version of fbootstraptransfer. all pointers 501 + * grow when we're dealing with a 64-bit process. 502 + * WARNING - keep in sync with fbootstraptransfer 503 + */ 504 + 505 + typedef struct user32_fbootstraptransfer { 506 + off_t fbt_offset; /* IN: offset to start read/write */ 507 + user32_size_t fbt_length; /* IN: number of bytes to transfer */ 508 + user32_addr_t fbt_buffer; /* IN: buffer to be read/written */ 509 + } user32_fbootstraptransfer_t; 510 + 511 + typedef struct user_fbootstraptransfer { 512 + off_t fbt_offset; /* IN: offset to start read/write */ 513 + user_size_t fbt_length; /* IN: number of bytes to transfer */ 514 + user_addr_t fbt_buffer; /* IN: buffer to be read/written */ 515 + } user_fbootstraptransfer_t; 516 + 517 + #endif // KERNEL 403 518 404 519 /* 405 520 * For F_LOG2PHYS this information is passed back to user ··· 439 554 #define O_POPUP 0x80000000 /* force window to popup on open */ 440 555 #define O_ALERT 0x20000000 /* small, clean popup window */ 441 556 557 + #ifdef PRIVATE 558 + /* 559 + * SPI: Argument data for F_OPENFROM 560 + */ 561 + struct fopenfrom { 562 + unsigned int o_flags; /* same as open(2) */ 563 + mode_t o_mode; /* same as open(2) */ 564 + char * o_pathname; /* relative pathname */ 565 + }; 566 + 567 + #ifdef KERNEL 568 + /* 569 + * LP64 version of fopenfrom. Memory pointers 570 + * grow when we're dealing with a 64-bit process. 571 + * 572 + * WARNING - keep in sync with fopenfrom (above) 573 + */ 574 + struct user32_fopenfrom { 575 + unsigned int o_flags; 576 + mode_t o_mode; 577 + user32_addr_t o_pathname; 578 + }; 579 + 580 + struct user_fopenfrom { 581 + unsigned int o_flags; 582 + mode_t o_mode; 583 + user_addr_t o_pathname; 584 + }; 585 + #endif /* KERNEL */ 586 + 587 + #endif /* PRIVATE */ 442 588 443 589 #endif /* (_POSIX_C_SOURCE && !_DARWIN_C_SOURCE) */ 444 590 591 + #ifndef KERNEL 445 592 446 593 #if !defined(_POSIX_C_SOURCE) || defined(_DARWIN_C_SOURCE) 447 - 448 - #include <sys/_types/_filesec_t.h> 449 - 594 + #ifndef _FILESEC_T 595 + struct _filesec; 596 + typedef struct _filesec *filesec_t; 597 + #define _FILESEC_T 598 + #endif 450 599 typedef enum { 451 600 FILESEC_OWNER = 1, 452 601 FILESEC_GROUP = 2, ··· 466 615 467 616 __BEGIN_DECLS 468 617 int open(const char *, int, ...) __DARWIN_ALIAS_C(open); 469 - #if __DARWIN_C_LEVEL >= 200809L 470 - int openat(int, const char *, int, ...) __DARWIN_NOCANCEL(openat) __OSX_AVAILABLE_STARTING(__MAC_10_10, __IPHONE_8_0); 471 - #endif 472 - #ifndef LIBC_ALIAS_CREAT 473 618 int creat(const char *, mode_t) __DARWIN_ALIAS_C(creat); 474 - #else 475 - int creat(const char *, mode_t) LIBC_ALIAS_C(creat); 476 - #endif 477 619 int fcntl(int, int, ...) __DARWIN_ALIAS_C(fcntl); 478 620 #if !defined(_POSIX_C_SOURCE) || defined(_DARWIN_C_SOURCE) 479 621 622 + #ifdef PRIVATE 623 + /* 624 + * These definitions are retained temporarily for compatibility. 625 + * If you want to use fileports, please use 626 + * #include <sys/fileport.h> 627 + * or 628 + * #include <System/sys/fileport.h> 629 + */ 630 + #ifndef _FILEPORT_T 631 + #define _FILEPORT_T 632 + typedef __darwin_mach_port_t fileport_t; 633 + #define FILEPORT_NULL ((fileport_t)0) 634 + #endif /* _FILEPORT_T */ 635 + 636 + int fileport_makeport(int, fileport_t*); 637 + int fileport_makefd(fileport_t); 638 + #endif /* PRIVATE */ 480 639 int openx_np(const char *, int, filesec_t); 481 - /* 482 - * data-protected non-portable open(2) : 483 - int open_dprotected_np(user_addr_t path, int flags, int class, int dpflags, int mode) 484 - */ 640 + /* data-protected non-portable open(2) */ 485 641 int open_dprotected_np ( const char *, int, int, int, ...); 486 642 int flock(int, int); 487 643 filesec_t filesec_init(void); ··· 495 651 #define _FILESEC_REMOVE_ACL ((void *)1) 496 652 #endif /* (!_POSIX_C_SOURCE || _DARWIN_C_SOURCE) */ 497 653 __END_DECLS 654 + #endif 498 655 499 656 #endif /* !_SYS_FCNTL_H_ */
+107
platform-include/sys/resource.h
··· 72 72 #include <stdint.h> 73 73 #endif /* __DARWIN_C_LEVEL >= __DARWIN_C_FULL */ 74 74 75 + #ifndef KERNEL 75 76 #include <Availability.h> 77 + #endif 76 78 77 79 /* [XSI] The timeval structure shall be defined as described in 78 80 * <sys/time.h> 79 81 */ 80 82 #include <sys/_types/_timeval.h> 83 + #ifdef KERNEL 84 + #include <sys/_types/_user32_timeval.h> 85 + #include <sys/_types/_user64_timeval.h> 86 + #endif 81 87 82 88 /* The id_t type shall be defined as described in <sys/types.h> */ 83 89 #include <sys/_types/_id_t.h> ··· 105 111 #define PRIO_DARWIN_THREAD 3 /* Second argument is always 0 (current thread) */ 106 112 #define PRIO_DARWIN_PROCESS 4 /* Second argument is a PID */ 107 113 114 + #ifdef PRIVATE 115 + 116 + #define PRIO_DARWIN_GPU 5 /* Second argument is a PID */ 117 + 118 + #define PRIO_DARWIN_GPU_ALLOW 0x1 119 + #define PRIO_DARWIN_GPU_DENY 0x2 120 + 121 + #define PRIO_DARWIN_ROLE 6 /* Second argument is a PID */ 122 + 123 + #define PRIO_DARWIN_ROLE_DEFAULT 0x0 /* Default state */ 124 + #define PRIO_DARWIN_ROLE_UI_FOCAL 0x1 /* On screen, focal UI */ 125 + #define PRIO_DARWIN_ROLE_UI 0x2 /* On screen, non-focal UI */ 126 + #define PRIO_DARWIN_ROLE_NON_UI 0x3 /* Off screen, non-focal UI */ 127 + 128 + #endif /* PRIVATE */ 108 129 109 130 /* 110 131 * Range limitations for the value of the third parameter to setpriority(). ··· 282 303 283 304 #endif /* __DARWIN_C_LEVEL >= __DARWIN_C_FULL */ 284 305 306 + #ifdef KERNEL 307 + 308 + struct rusage_superset { 309 + struct rusage ru; 310 + rusage_info_current ri; 311 + }; 312 + 313 + struct rusage_info_child { 314 + uint64_t ri_child_user_time; 315 + uint64_t ri_child_system_time; 316 + uint64_t ri_child_pkg_idle_wkups; 317 + uint64_t ri_child_interrupt_wkups; 318 + uint64_t ri_child_pageins; 319 + uint64_t ri_child_elapsed_abstime; 320 + }; 321 + 322 + struct user64_rusage { 323 + struct user64_timeval ru_utime; /* user time used */ 324 + struct user64_timeval ru_stime; /* system time used */ 325 + user64_long_t ru_maxrss; /* max resident set size */ 326 + user64_long_t ru_ixrss; /* integral shared memory size */ 327 + user64_long_t ru_idrss; /* integral unshared data " */ 328 + user64_long_t ru_isrss; /* integral unshared stack " */ 329 + user64_long_t ru_minflt; /* page reclaims */ 330 + user64_long_t ru_majflt; /* page faults */ 331 + user64_long_t ru_nswap; /* swaps */ 332 + user64_long_t ru_inblock; /* block input operations */ 333 + user64_long_t ru_oublock; /* block output operations */ 334 + user64_long_t ru_msgsnd; /* messages sent */ 335 + user64_long_t ru_msgrcv; /* messages received */ 336 + user64_long_t ru_nsignals; /* signals received */ 337 + user64_long_t ru_nvcsw; /* voluntary context switches */ 338 + user64_long_t ru_nivcsw; /* involuntary " */ 339 + }; 340 + 341 + struct user32_rusage { 342 + struct user32_timeval ru_utime; /* user time used */ 343 + struct user32_timeval ru_stime; /* system time used */ 344 + user32_long_t ru_maxrss; /* max resident set size */ 345 + user32_long_t ru_ixrss; /* integral shared memory size */ 346 + user32_long_t ru_idrss; /* integral unshared data " */ 347 + user32_long_t ru_isrss; /* integral unshared stack " */ 348 + user32_long_t ru_minflt; /* page reclaims */ 349 + user32_long_t ru_majflt; /* page faults */ 350 + user32_long_t ru_nswap; /* swaps */ 351 + user32_long_t ru_inblock; /* block input operations */ 352 + user32_long_t ru_oublock; /* block output operations */ 353 + user32_long_t ru_msgsnd; /* messages sent */ 354 + user32_long_t ru_msgrcv; /* messages received */ 355 + user32_long_t ru_nsignals; /* signals received */ 356 + user32_long_t ru_nvcsw; /* voluntary context switches */ 357 + user32_long_t ru_nivcsw; /* involuntary " */ 358 + }; 359 + 360 + #endif /* KERNEL */ 285 361 286 362 287 363 /***** ··· 357 433 358 434 /* I/O type */ 359 435 #define IOPOL_TYPE_DISK 0 436 + #if PRIVATE 437 + #define IOPOL_TYPE_VFS_HFS_CASE_SENSITIVITY 1 438 + #endif 360 439 361 440 /* scope */ 362 441 #define IOPOL_SCOPE_PROCESS 0 ··· 375 454 #define IOPOL_APPLICATION IOPOL_STANDARD 376 455 #define IOPOL_NORMAL IOPOL_IMPORTANT 377 456 457 + #if PRIVATE 458 + #define IOPOL_VFS_HFS_CASE_SENSITIVITY_DEFAULT 0 459 + #define IOPOL_VFS_HFS_CASE_SENSITIVITY_FORCE_CASE_SENSITIVE 1 460 + #endif 378 461 462 + #ifdef PRIVATE 463 + /* 464 + * Structures for use in communicating via iopolicysys() between Libc and the 465 + * kernel. Not to be used by user programs directly. 466 + */ 467 + 468 + /* 469 + * the command to iopolicysys() 470 + */ 471 + #define IOPOL_CMD_GET 0x00000001 /* Get I/O policy */ 472 + #define IOPOL_CMD_SET 0x00000002 /* Set I/O policy */ 473 + 474 + /* 475 + * Second parameter to iopolicysys() 476 + */ 477 + struct _iopol_param_t { 478 + int iop_scope; /* current process or a thread */ 479 + int iop_iotype; 480 + int iop_policy; 481 + }; 482 + 483 + #endif /* PRIVATE */ 379 484 #endif /* __DARWIN_C_LEVEL >= __DARWIN_C_FULL */ 380 485 486 + #ifndef KERNEL 381 487 382 488 __BEGIN_DECLS 383 489 int getpriority(int, id_t); ··· 393 499 int setrlimit(int, const struct rlimit *) __DARWIN_ALIAS(setrlimit); 394 500 __END_DECLS 395 501 502 + #endif /* !KERNEL */ 396 503 #endif /* !_SYS_RESOURCE_H_ */
+21 -11
platform-include/sys/syscall.h
··· 29 29 * System call switch table. 30 30 * 31 31 * DO NOT EDIT-- this file is automatically generated. 32 - * created from /SourceCache/xnu/xnu-2782.1.97/bsd/kern/syscalls.master 32 + * created from /Library/Caches/com.apple.xbs/Sources/xnu/xnu-3248.40.184/bsd/kern/syscalls.master 33 33 */ 34 34 35 35 #ifndef _SYS_SYSCALL_H_ ··· 215 215 /* 175 old gc_control */ 216 216 /* 176 old add_profil */ 217 217 /* 177 */ 218 - /* 178 */ 219 - /* 179 */ 218 + #define SYS_kdebug_trace_string 178 219 + #define SYS_kdebug_trace64 179 220 220 #define SYS_kdebug_trace 180 221 221 #define SYS_setgid 181 222 222 #define SYS_setegid 182 ··· 411 411 #define SYS___old_semwait_signal_nocancel 371 412 412 #define SYS_thread_selfid 372 413 413 #define SYS_ledger 373 414 - /* 374 */ 414 + #define SYS_kevent_qos 374 415 415 /* 375 */ 416 416 /* 376 */ 417 417 /* 377 */ ··· 428 428 #define SYS___mac_get_fd 388 429 429 #define SYS___mac_set_fd 389 430 430 #define SYS___mac_get_pid 390 431 - #define SYS___mac_get_lcid 391 432 - #define SYS___mac_get_lctx 392 433 - #define SYS___mac_set_lctx 393 434 - #define SYS_setlcid 394 435 - #define SYS_getlcid 395 431 + /* 391 */ 432 + /* 392 */ 433 + /* 393 */ 434 + #define SYS_pselect 394 435 + #define SYS_pselect_nocancel 395 436 436 #define SYS_read_nocancel 396 437 437 #define SYS_write_nocancel 397 438 438 #define SYS_open_nocancel 398 ··· 482 482 #define SYS_guarded_close_np 442 483 483 #define SYS_guarded_kqueue_np 443 484 484 #define SYS_change_fdguard_np 444 485 - /* 445 old __proc_suppress */ 485 + #define SYS_usrctl 445 486 486 #define SYS_proc_rlimit_control 446 487 487 #define SYS_connectx 447 488 488 #define SYS_disconnectx 448 ··· 527 527 #define SYS_guarded_writev_np 487 528 528 #define SYS_rename_ext 488 529 529 #define SYS_mremap_encrypted 489 530 - #define SYS_MAXSYSCALL 490 530 + #define SYS_netagent_trigger 490 531 + #define SYS_stack_snapshot_with_config 491 532 + #define SYS_microstackshot 492 533 + #define SYS_grab_pgo_data 493 534 + #define SYS_persona 494 535 + /* 495 */ 536 + /* 496 */ 537 + /* 497 */ 538 + /* 498 */ 539 + #define SYS_work_interval_ctl 499 540 + #define SYS_MAXSYSCALL 500 531 541 532 542 #endif /* __APPLE_API_PRIVATE */ 533 543 #endif /* !_SYS_SYSCALL_H_ */
+5 -2
src/CMakeLists.txt
··· 17 17 18 18 add_subdirectory(bootstrap_cmds) 19 19 add_subdirectory(external/cctools-port/cctools/ld64/src) 20 - add_subdirectory(kernel) 21 20 add_subdirectory(util) 22 21 add_subdirectory(libmach-o) 23 22 add_subdirectory(libdyld) ··· 37 36 endif (FRAMEWORK_APPKIT) 38 37 add_subdirectory(IOKit) 39 38 39 + add_definitions(-target x86_64-apple-darwin11) 40 + include(darling_lib) 41 + 40 42 include_directories("${CMAKE_CURRENT_SOURCE_DIR}/libc/include") 41 43 include_directories("${CMAKE_CURRENT_SOURCE_DIR}/libm/Source") 42 44 include_directories("${DARLING_TOP_DIRECTORY}/platform-include") ··· 45 47 include_directories("${DARLING_TOP_DIRECTORY}/compiler-include") 46 48 include_directories("${CMAKE_CURRENT_SOURCE_DIR}/duct/include") 47 49 50 + add_subdirectory(kernel) 48 51 add_subdirectory(libc) 49 52 add_subdirectory(libm) 50 53 add_subdirectory(libgcc) ··· 103 106 add_subdirectory(external/libarchive/libarchive) 104 107 add_subdirectory(external/apr) 105 108 add_subdirectory(external/corecrypto) 106 - add_subdirectory(external/security) # work in progress 109 + #add_subdirectory(external/security) # work in progress 107 110 add_subdirectory(sandbox) 108 111 add_subdirectory(Cocoa) 109 112 add_subdirectory(external/file/file)
+2 -2
src/duct/src/CMakeLists.txt
··· 16 16 add_definitions(-D__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__=1080) 17 17 18 18 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -nostdinc -D__DARWIN_UNIX03 -fPIC -w") 19 - set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -nostdlib -Wl,--unresolved-symbols=ignore-all -Wl,--version-script=${DARLING_TOP_DIRECTORY}/darwin.map") 19 + set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -nostdlib") 20 20 21 21 SET(CMAKE_INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}/darling") 22 22 SET(CMAKE_BUILD_WITH_INSTALL_RPATH TRUE) 23 23 SET(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE) 24 24 25 - add_library(system_duct SHARED commpage.c libnotify.c numcpus.c 25 + add_darling_library(system_duct SHARED commpage.c libnotify.c numcpus.c 26 26 CRGetCrashLogMessage.c acl.c bootstrap.c dyld.c dns_sd.c 27 27 sa_dst_compare.c asl.c) 28 28
+4 -4
src/kernel/CMakeLists.txt
··· 9 9 add_subdirectory(emulation/linux) 10 10 11 11 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -msse -msse2 -msse3 -w -fblocks -ggdb") 12 - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -D__DARWIN_UNIX03 -fPIC -w -nostdinc") 13 - set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -nostdlib -Wl,--version-script=${CMAKE_CURRENT_SOURCE_DIR}/darwin.map") 12 + set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -D__DARWIN_UNIX03 -fPIC -w -nostdinc -Wl,-undefined,suppress -Wl,-flat_namespace") 13 + set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -nostdlib") 14 14 15 15 include_directories(${DARLING_TOP_DIRECTORY}/kernel-include) 16 16 include_directories(${CMAKE_CURRENT_SOURCE_DIR}) 17 17 18 18 add_definitions(-DTARGET_OS_MAC=1) 19 19 add_definitions(-DHAVE_STDINT_H=1) 20 - add_definitions(-D__APPLE__ -D__DYNAMIC__) 20 + add_definitions(-D__APPLE__ -D__DYNAMIC__ -DPRIVATE) 21 21 22 22 add_subdirectory(libsyscall) 23 23 add_subdirectory(mach_server/client) ··· 26 26 SET(CMAKE_BUILD_WITH_INSTALL_RPATH TRUE) 27 27 SET(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE) 28 28 29 - add_library(system_kernel SHARED 29 + add_darling_library(system_kernel SHARED 30 30 $<TARGET_OBJECTS:libsyscall> 31 31 #$<TARGET_OBJECTS:kqueue> 32 32 $<TARGET_OBJECTS:emulation>
+1 -1
src/kernel/emulation/linux/bsdthread/bsdthread_create.c
··· 93 93 "testl %0, %0\n" // if in parent thread, jump away 94 94 "jne 1f\n" 95 95 "subq $40, %%rsp\n" // protect what we have stored on stack 96 - "call thread_self_trap@PLT\n" // get thread_self Mach port 96 + "call _thread_self_trap\n" // get thread_self Mach port 97 97 "addq $40, %%rsp\n" 98 98 "movl %%eax, %%esi\n" // thread_self is 2nd arg to pthread_entry_point 99 99 "movq %%rsp, %%rdi\n" // pthread_self as 1st arg
+2 -2
src/kernel/emulation/linux/linux-syscall.S
··· 1 1 .text 2 - .globl linux_syscall 2 + .globl _linux_syscall 3 3 4 - linux_syscall: 4 + _linux_syscall: 5 5 6 6 #if defined(__x86_64__) 7 7
+1 -1
src/kernel/emulation/linux/signal/sig_restorer.S
··· 1 1 .text 2 2 .globl sig_restorer 3 - .hidden sig_restorer 3 + .private_extern sig_restorer 4 4 5 5 #ifdef __x86_64__ 6 6 sig_restorer:
+4 -4
src/kernel/emulation/linux/syscalls-table.S
··· 4 4 #if defined(__x86_64__) 5 5 6 6 __darling_bsd_syscall: 7 - movq __bsd_syscall_table@GOTPCREL(%rip), %r10 7 + movq ___bsd_syscall_table@GOTPCREL(%rip), %r10 8 8 movq (%r10,%rax,8), %r10 9 9 test %r10, %r10 10 10 jz .no_sys ··· 18 18 ret 19 19 .no_sys: 20 20 movq %rax, %rdi 21 - call __unknown_syscall@PLT 21 + call ___unknown_syscall 22 22 ret 23 23 24 24 #elif defined(__i386__) ··· 33 33 popl %ecx 34 34 .Ltmp0: 35 35 addl $_GLOBAL_OFFSET_TABLE_+(.Ltmp0-.L0$pb), %ecx 36 - movl __bsd_syscall_table@GOT(%ecx), %ecx 36 + movl ___bsd_syscall_table@GOT(%ecx), %ecx 37 37 andl $0xffff, %eax // Because there is some extra stuff in upper bytes we don't need 38 38 movl (%ecx,%eax,4), %eax 39 39 test %eax, %eax ··· 51 51 ret 52 52 .no_sys: 53 53 pushl %ecx 54 - call __unknown_syscall@PLT 54 + call __unknown_syscall 55 55 addl $4, %esp 56 56 ret 57 57
+396 -389
src/kernel/libsyscall/CMakeLists.txt
··· 118 118 ${syscall_legacy_sources} 119 119 120 120 custom/errno.c 121 - custom/var_errno.c 121 + #custom/var_errno.c 122 122 123 123 # MIG generated files 124 124 ${CMAKE_CURRENT_BINARY_DIR}/mach/excUser.c ··· 168 168 ) 169 169 if (BITS EQUAL 64) 170 170 set (syscall_sources ${syscall_sources} 171 - sys_x86-64/__accept_nocancel.S 172 - sys_x86-64/__accept.S 173 - sys_x86-64/__access_extended.S 174 - sys_x86-64/access.S 175 - sys_x86-64/acct.S 176 - sys_x86-64/adjtime.S 177 - sys_x86-64/aio_cancel.S 178 - sys_x86-64/aio_error.S 179 - sys_x86-64/aio_fsync.S 180 - sys_x86-64/aio_read.S 181 - sys_x86-64/aio_return.S 182 - sys_x86-64/__aio_suspend_nocancel.S 183 - sys_x86-64/aio_suspend.S 184 - sys_x86-64/aio_write.S 185 - sys_x86-64/auditctl.S 186 - sys_x86-64/auditon.S 187 - sys_x86-64/audit.S 188 - sys_x86-64/audit_session_join.S 189 - sys_x86-64/audit_session_port.S 190 - sys_x86-64/audit_session_self.S 191 - sys_x86-64/__bind.S 192 - sys_x86-64/__bsdthread_create.S 193 - sys_x86-64/__bsdthread_ctl.S 194 - sys_x86-64/__bsdthread_register.S 195 - sys_x86-64/__bsdthread_terminate.S 196 - sys_x86-64/change_fdguard_np.S 197 - sys_x86-64/chdir.S 198 - sys_x86-64/chflags.S 199 - sys_x86-64/__chmod_extended.S 200 - sys_x86-64/__chmod.S 201 - sys_x86-64/chown.S 202 - sys_x86-64/chroot.S 203 - sys_x86-64/__chud.S 204 - sys_x86-64/__close_nocancel.S 205 - sys_x86-64/close.S 206 - sys_x86-64/__coalition_info.S 207 - sys_x86-64/__coalition.S 208 - sys_x86-64/__connect_nocancel.S 209 - sys_x86-64/__connect.S 210 - sys_x86-64/connectx.S 211 - sys_x86-64/__copyfile.S 212 - sys_x86-64/csops_audittoken.S 213 - sys_x86-64/csops.S 214 - sys_x86-64/__csrctl.S 171 + sys_x86-64/___accept_nocancel.S 172 + sys_x86-64/___accept.S 173 + sys_x86-64/___access_extended.S 174 + sys_x86-64/_access.S 175 + sys_x86-64/_acct.S 176 + sys_x86-64/_adjtime.S 177 + sys_x86-64/_aio_cancel.S 178 + sys_x86-64/_aio_error.S 179 + sys_x86-64/_aio_fsync.S 180 + sys_x86-64/_aio_read.S 181 + sys_x86-64/_aio_return.S 182 + sys_x86-64/___aio_suspend_nocancel.S 183 + sys_x86-64/_aio_suspend.S 184 + sys_x86-64/_aio_write.S 185 + sys_x86-64/_auditctl.S 186 + sys_x86-64/_auditon.S 187 + sys_x86-64/_audit.S 188 + sys_x86-64/_audit_session_join.S 189 + sys_x86-64/_audit_session_port.S 190 + sys_x86-64/_audit_session_self.S 191 + sys_x86-64/___bind.S 192 + sys_x86-64/___bsdthread_create.S 193 + sys_x86-64/___bsdthread_ctl.S 194 + sys_x86-64/___bsdthread_register.S 195 + sys_x86-64/___bsdthread_terminate.S 196 + sys_x86-64/___close_nocancel.S 197 + sys_x86-64/_close.S 198 + sys_x86-64/___coalition_info.S 199 + sys_x86-64/___coalition.S 200 + sys_x86-64/___connect_nocancel.S 201 + sys_x86-64/___connect.S 202 + sys_x86-64/_connectx.S 203 + sys_x86-64/___copyfile.S 204 + sys_x86-64/_csops_audittoken.S 205 + sys_x86-64/_csops.S 206 + sys_x86-64/___csrctl.S 215 207 sys_x86-64/custom.S 216 - sys_x86-64/__delete.S 217 - sys_x86-64/__disable_threadsignal.S 218 - sys_x86-64/disconnectx.S 219 - sys_x86-64/dup2.S 220 - sys_x86-64/dup.S 221 - sys_x86-64/exchangedata.S 222 - sys_x86-64/execve.S 223 - sys_x86-64/__exit.S 224 - sys_x86-64/faccessat.S 225 - sys_x86-64/fchdir.S 226 - sys_x86-64/fchflags.S 227 - sys_x86-64/fchmodat.S 228 - sys_x86-64/__fchmod_extended.S 229 - sys_x86-64/__fchmod.S 230 - sys_x86-64/fchownat.S 231 - sys_x86-64/fchown.S 232 - sys_x86-64/__fcntl_nocancel.S 233 - sys_x86-64/__fcntl.S 234 - sys_x86-64/fdatasync.S 235 - sys_x86-64/ffsctl.S 236 - sys_x86-64/fgetattrlist.S 237 - sys_x86-64/fgetxattr.S 238 - sys_x86-64/fhopen.S 239 - sys_x86-64/fileport_makefd.S 240 - sys_x86-64/fileport_makeport.S 241 - sys_x86-64/flistxattr.S 242 - sys_x86-64/flock.S 243 - sys_x86-64/__fork.S 244 - sys_x86-64/fpathconf.S 245 - sys_x86-64/fremovexattr.S 246 - sys_x86-64/fsctl.S 247 - sys_x86-64/fsetattrlist.S 248 - sys_x86-64/fsetxattr.S 249 - sys_x86-64/__fsgetpath.S 250 - sys_x86-64/__fstat64_extended.S 251 - sys_x86-64/fstat64.S 252 - sys_x86-64/fstatat64.S 253 - sys_x86-64/fstatat.S 254 - sys_x86-64/__fstat_extended.S 255 - sys_x86-64/fstatfs64.S 256 - sys_x86-64/fstatfs.S 257 - sys_x86-64/fstat.S 258 - sys_x86-64/__fsync_nocancel.S 259 - sys_x86-64/fsync.S 260 - sys_x86-64/ftruncate.S 261 - sys_x86-64/futimes.S 262 - sys_x86-64/getattrlistat.S 263 - sys_x86-64/getattrlistbulk.S 264 - sys_x86-64/__getattrlist.S 265 - sys_x86-64/getaudit_addr.S 266 - sys_x86-64/getauid.S 267 - sys_x86-64/__getdirentries64.S 268 - sys_x86-64/getdirentriesattr.S 269 - sys_x86-64/getdirentries.S 270 - sys_x86-64/getdtablesize.S 271 - sys_x86-64/getegid.S 272 - sys_x86-64/geteuid.S 273 - sys_x86-64/getfh.S 274 - sys_x86-64/getfsstat64.S 275 - sys_x86-64/getfsstat.S 276 - sys_x86-64/getgid.S 277 - sys_x86-64/getgroups.S 278 - sys_x86-64/__gethostuuid.S 279 - sys_x86-64/getitimer.S 280 - sys_x86-64/__getlcid.S 281 - sys_x86-64/__getlogin.S 282 - sys_x86-64/__getpeername.S 283 - sys_x86-64/getpgid.S 284 - sys_x86-64/getpgrp.S 285 - sys_x86-64/__getpid.S 286 - sys_x86-64/getppid.S 287 - sys_x86-64/getpriority.S 288 - sys_x86-64/__getrlimit.S 289 - sys_x86-64/getrusage.S 290 - sys_x86-64/__getsgroups.S 291 - sys_x86-64/getsid.S 292 - sys_x86-64/__getsockname.S 293 - sys_x86-64/getsockopt.S 294 - sys_x86-64/__gettid.S 295 - sys_x86-64/__gettimeofday.S 296 - sys_x86-64/getuid.S 297 - sys_x86-64/__getwgroups.S 298 - sys_x86-64/getxattr.S 299 - sys_x86-64/guarded_close_np.S 300 - sys_x86-64/guarded_kqueue_np.S 301 - sys_x86-64/__guarded_open_dprotected_np.S 302 - sys_x86-64/__guarded_open_np.S 303 - sys_x86-64/guarded_pwrite_np.S 304 - sys_x86-64/guarded_write_np.S 305 - sys_x86-64/guarded_writev_np.S 306 - sys_x86-64/__identitysvc.S 307 - sys_x86-64/__initgroups.S 308 - sys_x86-64/__ioctl.S 309 - sys_x86-64/__iopolicysys.S 310 - sys_x86-64/issetugid.S 311 - sys_x86-64/kas_info.S 312 - sys_x86-64/__kdebug_trace.S 313 - #sys_x86-64/kevent64.S 314 - #sys_x86-64/kevent.S 315 - sys_x86-64/__kill.S 316 - #sys_x86-64/kqueue.S 317 - sys_x86-64/__lchown.S 318 - sys_x86-64/ledger.S 319 - sys_x86-64/linkat.S 320 - sys_x86-64/link.S 321 - sys_x86-64/lio_listio.S 322 - sys_x86-64/__listen.S 323 - sys_x86-64/listxattr.S 324 - sys_x86-64/__lseek.S 325 - sys_x86-64/__lstat64_extended.S 326 - sys_x86-64/lstat64.S 327 - sys_x86-64/__lstat_extended.S 328 - sys_x86-64/lstat.S 329 - sys_x86-64/__mac_execve.S 330 - sys_x86-64/__mac_get_fd.S 331 - sys_x86-64/__mac_get_file.S 332 - sys_x86-64/__mac_getfsstat.S 333 - sys_x86-64/__mac_get_lcid.S 334 - sys_x86-64/__mac_get_lctx.S 335 - sys_x86-64/__mac_get_link.S 336 - sys_x86-64/__mac_get_mount.S 337 - sys_x86-64/__mac_get_pid.S 338 - sys_x86-64/__mac_get_proc.S 339 - sys_x86-64/__mac_mount.S 340 - sys_x86-64/__mac_set_fd.S 341 - sys_x86-64/__mac_set_file.S 342 - sys_x86-64/__mac_set_lctx.S 343 - sys_x86-64/__mac_set_link.S 344 - sys_x86-64/__mac_set_proc.S 345 - sys_x86-64/__mac_syscall.S 346 - sys_x86-64/madvise.S 347 - sys_x86-64/memorystatus_control.S 348 - sys_x86-64/memorystatus_get_level.S 349 - sys_x86-64/mincore.S 350 - sys_x86-64/minherit.S 351 - sys_x86-64/mkdirat.S 352 - sys_x86-64/__mkdir_extended.S 353 - sys_x86-64/mkdir.S 354 - sys_x86-64/__mkfifo_extended.S 355 - sys_x86-64/mkfifo.S 356 - sys_x86-64/mknod.S 357 - sys_x86-64/mlockall.S 358 - sys_x86-64/mlock.S 359 - sys_x86-64/__mmap.S 360 - sys_x86-64/modwatch.S 361 - sys_x86-64/mount.S 362 - sys_x86-64/__mprotect.S 363 - sys_x86-64/mremap_encrypted.S 364 - sys_x86-64/__msgctl.S 365 - sys_x86-64/msgget.S 366 - sys_x86-64/__msgrcv_nocancel.S 367 - sys_x86-64/msgrcv.S 368 - sys_x86-64/__msgsnd_nocancel.S 369 - sys_x86-64/msgsnd.S 370 - sys_x86-64/__msgsys.S 371 - sys_x86-64/__msync_nocancel.S 372 - sys_x86-64/__msync.S 373 - sys_x86-64/munlockall.S 374 - sys_x86-64/munlock.S 375 - sys_x86-64/__munmap.S 376 - sys_x86-64/necp_match_policy.S 377 - sys_x86-64/nfsclnt.S 378 - sys_x86-64/nfssvc.S 379 - sys_x86-64/____old_semwait_signal_nocancel.S 380 - sys_x86-64/__old_semwait_signal.S 381 - sys_x86-64/__openat_nocancel.S 382 - sys_x86-64/__openat.S 383 - sys_x86-64/openbyid_np.S 384 - sys_x86-64/__open_dprotected_np.S 385 - sys_x86-64/__open_extended.S 386 - sys_x86-64/__open_nocancel.S 387 - sys_x86-64/__open.S 388 - sys_x86-64/pathconf.S 389 - sys_x86-64/peeloff.S 390 - sys_x86-64/pid_resume.S 391 - sys_x86-64/pid_suspend.S 392 - sys_x86-64/__pipe.S 393 - sys_x86-64/__poll_nocancel.S 394 - sys_x86-64/poll.S 395 - sys_x86-64/__posix_spawn.S 396 - sys_x86-64/__pread_nocancel.S 397 - sys_x86-64/pread.S 398 - sys_x86-64/__process_policy.S 399 - sys_x86-64/__proc_info.S 400 - sys_x86-64/proc_rlimit_control.S 401 - sys_x86-64/proc_trace_log.S 402 - sys_x86-64/proc_uuid_policy.S 403 - sys_x86-64/__psynch_cvbroad.S 404 - sys_x86-64/__psynch_cvclrprepost.S 405 - sys_x86-64/__psynch_cvsignal.S 406 - sys_x86-64/__psynch_cvwait.S 407 - sys_x86-64/__psynch_mutexdrop.S 408 - sys_x86-64/__psynch_mutexwait.S 409 - sys_x86-64/__psynch_rw_downgrade.S 410 - sys_x86-64/__psynch_rw_longrdlock.S 411 - sys_x86-64/__psynch_rw_rdlock.S 412 - sys_x86-64/__psynch_rw_unlock2.S 413 - sys_x86-64/__psynch_rw_unlock.S 414 - sys_x86-64/__psynch_rw_upgrade.S 415 - sys_x86-64/__psynch_rw_wrlock.S 416 - sys_x86-64/__psynch_rw_yieldwrlock.S 417 - sys_x86-64/__pthread_canceled.S 418 - sys_x86-64/__pthread_chdir.S 419 - sys_x86-64/__pthread_fchdir.S 420 - sys_x86-64/__pthread_kill.S 421 - sys_x86-64/__pthread_markcancel.S 422 - sys_x86-64/__pthread_sigmask.S 423 - sys_x86-64/__ptrace.S 424 - sys_x86-64/__pwrite_nocancel.S 425 - sys_x86-64/pwrite.S 426 - sys_x86-64/quotactl.S 427 - sys_x86-64/quota.S 428 - sys_x86-64/readlinkat.S 429 - sys_x86-64/readlink.S 430 - sys_x86-64/__read_nocancel.S 431 - sys_x86-64/read.S 432 - sys_x86-64/__readv_nocancel.S 433 - sys_x86-64/readv.S 434 - sys_x86-64/reboot.S 435 - sys_x86-64/__recvfrom_nocancel.S 436 - sys_x86-64/__recvfrom.S 437 - sys_x86-64/__recvmsg_nocancel.S 438 - sys_x86-64/__recvmsg.S 439 - sys_x86-64/recvmsg_x.S 440 - sys_x86-64/removexattr.S 441 - sys_x86-64/__renameat.S 442 - sys_x86-64/__rename_ext.S 443 - sys_x86-64/__rename.S 444 - sys_x86-64/revoke.S 445 - sys_x86-64/__rmdir.S 446 - sys_x86-64/searchfs.S 447 - sys_x86-64/__select_nocancel.S 448 - sys_x86-64/__select.S 449 - sys_x86-64/sem_close.S 450 - sys_x86-64/__semctl.S 451 - sys_x86-64/semget.S 452 - sys_x86-64/__sem_open.S 453 - sys_x86-64/semop.S 454 - sys_x86-64/sem_post.S 455 - sys_x86-64/__semsys.S 456 - sys_x86-64/sem_trywait.S 457 - sys_x86-64/sem_unlink.S 458 - sys_x86-64/__sem_wait_nocancel.S 459 - sys_x86-64/sem_wait.S 460 - sys_x86-64/__semwait_signal_nocancel.S 461 - sys_x86-64/__semwait_signal.S 462 - sys_x86-64/sendfile.S 463 - sys_x86-64/__sendmsg_nocancel.S 464 - sys_x86-64/__sendmsg.S 465 - sys_x86-64/sendmsg_x.S 466 - sys_x86-64/__sendto_nocancel.S 467 - sys_x86-64/__sendto.S 468 - sys_x86-64/__setattrlist.S 469 - sys_x86-64/setaudit_addr.S 470 - sys_x86-64/setauid.S 471 - sys_x86-64/setegid.S 472 - sys_x86-64/seteuid.S 473 - sys_x86-64/setgid.S 474 - sys_x86-64/setgroups.S 475 - sys_x86-64/setitimer.S 476 - sys_x86-64/__setlcid.S 477 - sys_x86-64/__setlogin.S 478 - sys_x86-64/setpgid.S 479 - sys_x86-64/__setpriority.S 480 - sys_x86-64/setprivexec.S 481 - sys_x86-64/setquota.S 482 - sys_x86-64/__setregid.S 483 - sys_x86-64/__setreuid.S 484 - sys_x86-64/__setrlimit.S 485 - sys_x86-64/__setsgroups.S 486 - sys_x86-64/setsid.S 487 - sys_x86-64/setsockopt.S 488 - sys_x86-64/__settid.S 489 - sys_x86-64/__settid_with_pid.S 490 - sys_x86-64/__settimeofday.S 491 - sys_x86-64/setuid.S 492 - sys_x86-64/__setwgroups.S 493 - sys_x86-64/setxattr.S 494 - sys_x86-64/__sfi_ctl.S 495 - sys_x86-64/__sfi_pidctl.S 496 - sys_x86-64/__shared_region_check_np.S 497 - sys_x86-64/__shared_region_map_and_slide_np.S 498 - sys_x86-64/shmat.S 499 - sys_x86-64/__shmctl.S 500 - sys_x86-64/shmdt.S 501 - sys_x86-64/shmget.S 502 - sys_x86-64/__shm_open.S 503 - sys_x86-64/__shmsys.S 504 - sys_x86-64/shm_unlink.S 505 - sys_x86-64/shutdown.S 506 - sys_x86-64/__sigaction.S 507 - sys_x86-64/__sigaltstack.S 508 - sys_x86-64/sigpending.S 509 - sys_x86-64/sigprocmask.S 510 - sys_x86-64/__sigreturn.S 511 - sys_x86-64/__sigsuspend_nocancel.S 512 - sys_x86-64/__sigsuspend.S 513 - sys_x86-64/____sigwait_nocancel.S 514 - sys_x86-64/__sigwait.S 515 - sys_x86-64/socket_delegate.S 516 - sys_x86-64/__socketpair.S 517 - sys_x86-64/socket.S 518 - sys_x86-64/__stack_snapshot.S 519 - sys_x86-64/__stat64_extended.S 520 - sys_x86-64/stat64.S 521 - sys_x86-64/__stat_extended.S 522 - sys_x86-64/statfs64.S 523 - sys_x86-64/statfs.S 524 - sys_x86-64/stat.S 525 - sys_x86-64/swapon.S 526 - sys_x86-64/symlinkat.S 527 - sys_x86-64/symlink.S 528 - sys_x86-64/sync.S 529 - sys_x86-64/__syscall.S 530 - sys_x86-64/__sysctlbyname.S 531 - sys_x86-64/__sysctl.S 532 - sys_x86-64/system_override.S 533 - sys_x86-64/__telemetry.S 534 - sys_x86-64/__thread_selfid.S 535 - sys_x86-64/__thread_selfusage.S 536 - sys_x86-64/truncate.S 537 - sys_x86-64/__umask_extended.S 538 - sys_x86-64/umask.S 539 - sys_x86-64/undelete.S 540 - sys_x86-64/__unlinkat.S 541 - sys_x86-64/__unlink.S 542 - sys_x86-64/unmount.S 543 - sys_x86-64/utimes.S 544 - sys_x86-64/__vfork.S 545 - sys_x86-64/vfs_purge.S 546 - sys_x86-64/vm_pressure_monitor.S 547 - sys_x86-64/__wait4_nocancel.S 548 - sys_x86-64/__wait4.S 549 - sys_x86-64/waitevent.S 550 - sys_x86-64/__waitid_nocancel.S 551 - sys_x86-64/waitid.S 552 - sys_x86-64/watchevent.S 553 - sys_x86-64/__workq_kernreturn.S 554 - sys_x86-64/__workq_open.S 555 - sys_x86-64/__write_nocancel.S 556 - sys_x86-64/write.S 557 - sys_x86-64/__writev_nocancel.S 558 - sys_x86-64/writev.S 208 + sys_x86-64/___delete.S 209 + sys_x86-64/___disable_threadsignal.S 210 + sys_x86-64/_disconnectx.S 211 + sys_x86-64/_dup.S 212 + sys_x86-64/_dup2.S 213 + sys_x86-64/_execve.S 214 + sys_x86-64/_exchangedata.S 215 + sys_x86-64/___exit.S 216 + sys_x86-64/_faccessat.S 217 + sys_x86-64/___fcntl_nocancel.S 218 + sys_x86-64/___fcntl.S 219 + sys_x86-64/_fdatasync.S 220 + sys_x86-64/_ffsctl.S 221 + sys_x86-64/_fgetattrlist.S 222 + sys_x86-64/_fgetxattr.S 223 + sys_x86-64/_fhopen.S 224 + sys_x86-64/_fchdir.S 225 + sys_x86-64/_fchflags.S 226 + sys_x86-64/_fchmodat.S 227 + sys_x86-64/___fchmod_extended.S 228 + sys_x86-64/___fchmod.S 229 + sys_x86-64/_fchownat.S 230 + sys_x86-64/_fchown.S 231 + sys_x86-64/_fileport_makefd.S 232 + sys_x86-64/_fileport_makeport.S 233 + sys_x86-64/_flistxattr.S 234 + sys_x86-64/_flock.S 235 + sys_x86-64/___fork.S 236 + sys_x86-64/_fpathconf.S 237 + sys_x86-64/_fremovexattr.S 238 + sys_x86-64/_fsctl.S 239 + sys_x86-64/_fsetattrlist.S 240 + sys_x86-64/_fsetxattr.S 241 + sys_x86-64/___fsgetpath.S 242 + sys_x86-64/_fstatat.S 243 + sys_x86-64/_fstatat64.S 244 + sys_x86-64/___fstat_extended.S 245 + sys_x86-64/_fstatfs.S 246 + sys_x86-64/_fstatfs64.S 247 + sys_x86-64/_fstat.S 248 + sys_x86-64/___fstat64_extended.S 249 + sys_x86-64/_fstat64.S 250 + sys_x86-64/___fsync_nocancel.S 251 + sys_x86-64/_fsync.S 252 + sys_x86-64/_ftruncate.S 253 + sys_x86-64/_futimes.S 254 + sys_x86-64/_getattrlistat.S 255 + sys_x86-64/_getattrlistbulk.S 256 + sys_x86-64/___getattrlist.S 257 + sys_x86-64/_getaudit_addr.S 258 + sys_x86-64/_getauid.S 259 + sys_x86-64/_getdirentriesattr.S 260 + sys_x86-64/_getdirentries.S 261 + sys_x86-64/___getdirentries64.S 262 + sys_x86-64/_getdtablesize.S 263 + sys_x86-64/_getegid.S 264 + sys_x86-64/_geteuid.S 265 + sys_x86-64/_getfh.S 266 + sys_x86-64/_getfsstat.S 267 + sys_x86-64/_getfsstat64.S 268 + sys_x86-64/_getgid.S 269 + sys_x86-64/_getgroups.S 270 + sys_x86-64/___gethostuuid.S 271 + sys_x86-64/_getitimer.S 272 + sys_x86-64/___getlogin.S 273 + sys_x86-64/___getpeername.S 274 + sys_x86-64/_getpgid.S 275 + sys_x86-64/_getpgrp.S 276 + sys_x86-64/___getpid.S 277 + sys_x86-64/_getppid.S 278 + sys_x86-64/_getpriority.S 279 + sys_x86-64/___getrlimit.S 280 + sys_x86-64/_getrusage.S 281 + sys_x86-64/___getsgroups.S 282 + sys_x86-64/_getsid.S 283 + sys_x86-64/___getsockname.S 284 + sys_x86-64/_getsockopt.S 285 + sys_x86-64/___gettid.S 286 + sys_x86-64/___gettimeofday.S 287 + sys_x86-64/_getuid.S 288 + sys_x86-64/___getwgroups.S 289 + sys_x86-64/_getxattr.S 290 + sys_x86-64/_grab_pgo_data.S 291 + sys_x86-64/_guarded_close_np.S 292 + sys_x86-64/_guarded_kqueue_np.S 293 + sys_x86-64/___guarded_open_dprotected_np.S 294 + sys_x86-64/___guarded_open_np.S 295 + sys_x86-64/_guarded_pwrite_np.S 296 + sys_x86-64/_guarded_write_np.S 297 + sys_x86-64/_guarded_writev_np.S 298 + sys_x86-64/_change_fdguard_np.S 299 + sys_x86-64/_chdir.S 300 + sys_x86-64/_chflags.S 301 + sys_x86-64/___chmod_extended.S 302 + sys_x86-64/___chmod.S 303 + sys_x86-64/_chown.S 304 + sys_x86-64/_chroot.S 305 + sys_x86-64/___chud.S 306 + sys_x86-64/___identitysvc.S 307 + sys_x86-64/___initgroups.S 308 + sys_x86-64/___ioctl.S 309 + sys_x86-64/___iopolicysys.S 310 + sys_x86-64/_issetugid.S 311 + sys_x86-64/_kas_info.S 312 + sys_x86-64/___kdebug_trace.S 313 + sys_x86-64/___kdebug_trace_string.S 314 + sys_x86-64/___kdebug_trace64.S 315 + #sys_x86-64/_kevent_qos.S 316 + #sys_x86-64/_kevent.S 317 + #sys_x86-64/_kevent64.S 318 + sys_x86-64/___kill.S 319 + #sys_x86-64/_kqueue.S 320 + sys_x86-64/_ledger.S 321 + sys_x86-64/___lchown.S 322 + sys_x86-64/_linkat.S 323 + sys_x86-64/_link.S 324 + sys_x86-64/_lio_listio.S 325 + sys_x86-64/___listen.S 326 + sys_x86-64/_listxattr.S 327 + sys_x86-64/___lseek.S 328 + sys_x86-64/___lstat_extended.S 329 + sys_x86-64/_lstat.S 330 + sys_x86-64/___lstat64_extended.S 331 + sys_x86-64/_lstat64.S 332 + sys_x86-64/___mac_execve.S 333 + sys_x86-64/___mac_get_fd.S 334 + sys_x86-64/___mac_get_file.S 335 + sys_x86-64/___mac_getfsstat.S 336 + sys_x86-64/___mac_get_link.S 337 + sys_x86-64/___mac_get_mount.S 338 + sys_x86-64/___mac_get_pid.S 339 + sys_x86-64/___mac_get_proc.S 340 + sys_x86-64/___mac_mount.S 341 + sys_x86-64/___mac_set_fd.S 342 + sys_x86-64/___mac_set_file.S 343 + sys_x86-64/___mac_set_link.S 344 + sys_x86-64/___mac_set_proc.S 345 + sys_x86-64/___mac_syscall.S 346 + sys_x86-64/_madvise.S 347 + sys_x86-64/_memorystatus_control.S 348 + sys_x86-64/_memorystatus_get_level.S 349 + sys_x86-64/___microstackshot.S 350 + sys_x86-64/_mincore.S 351 + sys_x86-64/_minherit.S 352 + sys_x86-64/_mkdirat.S 353 + sys_x86-64/___mkdir_extended.S 354 + sys_x86-64/_mkdir.S 355 + sys_x86-64/___mkfifo_extended.S 356 + sys_x86-64/_mkfifo.S 357 + sys_x86-64/_mknod.S 358 + sys_x86-64/_mlockall.S 359 + sys_x86-64/_mlock.S 360 + sys_x86-64/___mmap.S 361 + sys_x86-64/_modwatch.S 362 + sys_x86-64/_mount.S 363 + sys_x86-64/___mprotect.S 364 + sys_x86-64/_mremap_encrypted.S 365 + sys_x86-64/___msgctl.S 366 + sys_x86-64/_msgget.S 367 + sys_x86-64/___msgrcv_nocancel.S 368 + sys_x86-64/_msgrcv.S 369 + sys_x86-64/___msgsnd_nocancel.S 370 + sys_x86-64/_msgsnd.S 371 + sys_x86-64/___msgsys.S 372 + sys_x86-64/___msync_nocancel.S 373 + sys_x86-64/___msync.S 374 + sys_x86-64/_munlockall.S 375 + sys_x86-64/_munlock.S 376 + sys_x86-64/___munmap.S 377 + sys_x86-64/_necp_match_policy.S 378 + sys_x86-64/_netagent_trigger.S 379 + sys_x86-64/_nfsclnt.S 380 + sys_x86-64/_nfssvc.S 381 + sys_x86-64/_____old_semwait_signal_nocancel.S 382 + sys_x86-64/___old_semwait_signal.S 383 + sys_x86-64/___openat_nocancel.S 384 + sys_x86-64/___openat.S 385 + sys_x86-64/_openbyid_np.S 386 + sys_x86-64/___open_dprotected_np.S 387 + sys_x86-64/___open_extended.S 388 + sys_x86-64/___open_nocancel.S 389 + sys_x86-64/___open.S 390 + sys_x86-64/_pathconf.S 391 + sys_x86-64/_peeloff.S 392 + sys_x86-64/___persona.S 393 + sys_x86-64/_pid_resume.S 394 + sys_x86-64/_pid_suspend.S 395 + sys_x86-64/___pipe.S 396 + sys_x86-64/___poll_nocancel.S 397 + sys_x86-64/_poll.S 398 + sys_x86-64/___posix_spawn.S 399 + sys_x86-64/___pread_nocancel.S 400 + sys_x86-64/_pread.S 401 + sys_x86-64/___process_policy.S 402 + sys_x86-64/___proc_info.S 403 + sys_x86-64/_proc_rlimit_control.S 404 + sys_x86-64/_proc_trace_log.S 405 + sys_x86-64/_proc_uuid_policy.S 406 + sys_x86-64/___pselect_nocancel.S 407 + sys_x86-64/___pselect.S 408 + sys_x86-64/___psynch_cvbroad.S 409 + sys_x86-64/___psynch_cvclrprepost.S 410 + sys_x86-64/___psynch_cvsignal.S 411 + sys_x86-64/___psynch_cvwait.S 412 + sys_x86-64/___psynch_mutexdrop.S 413 + sys_x86-64/___psynch_mutexwait.S 414 + sys_x86-64/___psynch_rw_downgrade.S 415 + sys_x86-64/___psynch_rw_longrdlock.S 416 + sys_x86-64/___psynch_rw_rdlock.S 417 + sys_x86-64/___psynch_rw_unlock.S 418 + sys_x86-64/___psynch_rw_unlock2.S 419 + sys_x86-64/___psynch_rw_upgrade.S 420 + sys_x86-64/___psynch_rw_wrlock.S 421 + sys_x86-64/___psynch_rw_yieldwrlock.S 422 + sys_x86-64/___pthread_canceled.S 423 + sys_x86-64/___pthread_fchdir.S 424 + sys_x86-64/___pthread_chdir.S 425 + sys_x86-64/___pthread_kill.S 426 + sys_x86-64/___pthread_markcancel.S 427 + sys_x86-64/___pthread_sigmask.S 428 + sys_x86-64/___ptrace.S 429 + sys_x86-64/___pwrite_nocancel.S 430 + sys_x86-64/_pwrite.S 431 + sys_x86-64/_quotactl.S 432 + sys_x86-64/_quota.S 433 + sys_x86-64/_readlinkat.S 434 + sys_x86-64/_readlink.S 435 + sys_x86-64/___read_nocancel.S 436 + sys_x86-64/_read.S 437 + sys_x86-64/___readv_nocancel.S 438 + sys_x86-64/_readv.S 439 + sys_x86-64/_reboot.S 440 + sys_x86-64/___recvfrom_nocancel.S 441 + sys_x86-64/___recvfrom.S 442 + sys_x86-64/___recvmsg_nocancel.S 443 + sys_x86-64/___recvmsg.S 444 + sys_x86-64/_recvmsg_x.S 445 + sys_x86-64/_removexattr.S 446 + sys_x86-64/___renameat.S 447 + sys_x86-64/___rename_ext.S 448 + sys_x86-64/___rename.S 449 + sys_x86-64/_revoke.S 450 + sys_x86-64/___rmdir.S 451 + sys_x86-64/_searchfs.S 452 + sys_x86-64/___select_nocancel.S 453 + sys_x86-64/___select.S 454 + sys_x86-64/_sem_close.S 455 + sys_x86-64/___semctl.S 456 + sys_x86-64/_semget.S 457 + sys_x86-64/___sem_open.S 458 + sys_x86-64/_semop.S 459 + sys_x86-64/_sem_post.S 460 + sys_x86-64/___semsys.S 461 + sys_x86-64/_sem_trywait.S 462 + sys_x86-64/_sem_unlink.S 463 + sys_x86-64/___sem_wait_nocancel.S 464 + sys_x86-64/_sem_wait.S 465 + sys_x86-64/___semwait_signal_nocancel.S 466 + sys_x86-64/___semwait_signal.S 467 + sys_x86-64/_sendfile.S 468 + sys_x86-64/___sendmsg_nocancel.S 469 + sys_x86-64/___sendmsg.S 470 + sys_x86-64/_sendmsg_x.S 471 + sys_x86-64/___sendto_nocancel.S 472 + sys_x86-64/___sendto.S 473 + sys_x86-64/___setattrlist.S 474 + sys_x86-64/_setaudit_addr.S 475 + sys_x86-64/_setauid.S 476 + sys_x86-64/_setegid.S 477 + sys_x86-64/_seteuid.S 478 + sys_x86-64/_setgid.S 479 + sys_x86-64/_setgroups.S 480 + sys_x86-64/_setitimer.S 481 + sys_x86-64/___setlogin.S 482 + sys_x86-64/_setpgid.S 483 + sys_x86-64/___setpriority.S 484 + sys_x86-64/_setprivexec.S 485 + sys_x86-64/_setquota.S 486 + sys_x86-64/___setregid.S 487 + sys_x86-64/___setreuid.S 488 + sys_x86-64/___setrlimit.S 489 + sys_x86-64/___setsgroups.S 490 + sys_x86-64/_setsid.S 491 + sys_x86-64/_setsockopt.S 492 + sys_x86-64/___settid.S 493 + sys_x86-64/___settid_with_pid.S 494 + sys_x86-64/___settimeofday.S 495 + sys_x86-64/_setuid.S 496 + sys_x86-64/___setwgroups.S 497 + sys_x86-64/_setxattr.S 498 + sys_x86-64/___sfi_ctl.S 499 + sys_x86-64/___sfi_pidctl.S 500 + sys_x86-64/___shared_region_check_np.S 501 + sys_x86-64/___shared_region_map_and_slide_np.S 502 + sys_x86-64/_shmat.S 503 + sys_x86-64/___shmctl.S 504 + sys_x86-64/_shmdt.S 505 + sys_x86-64/_shmget.S 506 + sys_x86-64/___shm_open.S 507 + sys_x86-64/___shmsys.S 508 + sys_x86-64/_shm_unlink.S 509 + sys_x86-64/_shutdown.S 510 + sys_x86-64/___sigaction.S 511 + sys_x86-64/___sigaltstack.S 512 + sys_x86-64/_sigpending.S 513 + sys_x86-64/_sigprocmask.S 514 + sys_x86-64/___sigreturn.S 515 + sys_x86-64/___sigsuspend_nocancel.S 516 + sys_x86-64/___sigsuspend.S 517 + sys_x86-64/_____sigwait_nocancel.S 518 + sys_x86-64/___sigwait.S 519 + sys_x86-64/_socket_delegate.S 520 + sys_x86-64/___socketpair.S 521 + sys_x86-64/_socket.S 522 + sys_x86-64/___stack_snapshot.S 523 + sys_x86-64/___stack_snapshot_with_config.S 524 + sys_x86-64/___stat_extended.S 525 + sys_x86-64/_statfs.S 526 + sys_x86-64/_statfs64.S 527 + sys_x86-64/_stat.S 528 + sys_x86-64/___stat64_extended.S 529 + sys_x86-64/_stat64.S 530 + sys_x86-64/_swapon.S 531 + sys_x86-64/_symlinkat.S 532 + sys_x86-64/_symlink.S 533 + sys_x86-64/_sync.S 534 + sys_x86-64/___syscall.S 535 + sys_x86-64/___sysctlbyname.S 536 + sys_x86-64/___sysctl.S 537 + sys_x86-64/_system_override.S 538 + sys_x86-64/___telemetry.S 539 + sys_x86-64/___thread_selfid.S 540 + sys_x86-64/___thread_selfusage.S 541 + sys_x86-64/_truncate.S 542 + sys_x86-64/___umask_extended.S 543 + sys_x86-64/_umask.S 544 + sys_x86-64/_undelete.S 545 + sys_x86-64/___unlinkat.S 546 + sys_x86-64/___unlink.S 547 + sys_x86-64/_unmount.S 548 + sys_x86-64/_usrctl.S 549 + sys_x86-64/_utimes.S 550 + sys_x86-64/___vfork.S 551 + sys_x86-64/_vfs_purge.S 552 + sys_x86-64/_vm_pressure_monitor.S 553 + sys_x86-64/_waitevent.S 554 + sys_x86-64/___waitid_nocancel.S 555 + sys_x86-64/_waitid.S 556 + sys_x86-64/___wait4_nocancel.S 557 + sys_x86-64/___wait4.S 558 + sys_x86-64/_watchevent.S 559 + sys_x86-64/___work_interval_ctl.S 560 + sys_x86-64/___workq_kernreturn.S 561 + sys_x86-64/___workq_open.S 562 + sys_x86-64/___write_nocancel.S 563 + sys_x86-64/_write.S 564 + sys_x86-64/___writev_nocancel.S 565 + sys_x86-64/_writev.S 559 566 ) 560 567 elseif(BITS EQUAL 32) 561 568 ··· 967 974 mig(mach/thread_act.defs) 968 975 mig(mach/vm_map.defs) 969 976 970 - set_source_files_properties(custom/errno.c PROPERTIES COMPILE_FLAGS "-no-integrated-as") 977 + #set_source_files_properties(custom/errno.c PROPERTIES COMPILE_FLAGS "-no-integrated-as") 971 978 set_source_files_properties(${syscall_legacy_sources} PROPERTIES COMPILE_FLAGS "-U_DARWIN_C_SOURCE -U__DARWIN_UNIX03 -D__DARWIN_UNIX03=0 -U__DARWIN_C_LEVEL") 972 979 set_source_files_properties(wrappers/legacy/select-pre1050.c PROPERTIES COMPILE_FLAGS "-U_DARWIN_C_SOURCE -DSYSCALL_PRE1050") 973 980 set_source_files_properties(wrappers/cancelable/select-cancel.c PROPERTIES COMPILE_FLAGS "-U_DARWIN_C_SOURCE")
+99 -99
src/kernel/libsyscall/Platforms/MacOSX/i386/syscall.map
··· 1 - accept$NOCANCEL$UNIX2003 __accept_nocancel 2 - accept$UNIX2003 __accept 3 - aio_suspend __aio_suspend_nocancel 4 - aio_suspend$NOCANCEL$UNIX2003 __aio_suspend_nocancel 5 - aio_suspend$UNIX2003 __aio_suspend 6 - bind$UNIX2003 __bind 7 - close __close_nocancel 8 - close$NOCANCEL$UNIX2003 __close_nocancel 9 - close$UNIX2003 __close 10 - chmod __chmod 11 - connect$NOCANCEL$UNIX2003 __connect_nocancel 12 - connect$UNIX2003 __connect 13 - fcntl __fcntl_nocancel 14 - fcntl$NOCANCEL$UNIX2003 __fcntl_nocancel 15 - fcntl$UNIX2003 __fcntl 16 - fstat$INODE64 __fstat64 17 - fstatat$INODE64 __fstatat64 18 - fstatfs$INODE64 __fstatfs64 19 - fsync __fsync_nocancel 20 - fsync$NOCANCEL$UNIX2003 __fsync_nocancel 21 - fsync$UNIX2003 __fsync 22 - getattrlist$UNIX2003 __getattrlist 23 - getfsstat$INODE64 __getfsstat64 24 - getpeername$UNIX2003 __getpeername 25 - getsockname$UNIX2003 __getsockname 26 - lchown$UNIX2003 __lchown 27 - listen$UNIX2003 __listen 28 - lstat$INODE64 __lstat64 29 - mmap __mmap 30 - mprotect$UNIX2003 __mprotect 31 - msgctl$UNIX2003 __msgctl 32 - msgrcv __msgrcv_nocancel 33 - msgrcv$NOCANCEL$UNIX2003 __msgrcv_nocancel 34 - msgrcv$UNIX2003 __msgrcv 35 - msgsnd __msgsnd_nocancel 36 - msgsnd$NOCANCEL$UNIX2003 __msgsnd_nocancel 37 - msgsnd$UNIX2003 __msgsnd 38 - msgsys __msgsys 39 - msync$NOCANCEL$UNIX2003 __msync_nocancel 40 - msync$UNIX2003 __msync 41 - open$NOCANCEL$UNIX2003 __open_nocancel 42 - open$UNIX2003 __open 43 - openat$NOCANCEL __openat_nocancel 44 - openat __openat 45 - poll __poll_nocancel 46 - poll$NOCANCEL$UNIX2003 __poll_nocancel 47 - poll$UNIX2003 __poll 48 - pread __pread_nocancel 49 - pread$NOCANCEL$UNIX2003 __pread_nocancel 50 - pread$UNIX2003 __pread 51 - pwrite __pwrite_nocancel 52 - pwrite$NOCANCEL$UNIX2003 __pwrite_nocancel 53 - pwrite$UNIX2003 __pwrite 54 - read __read_nocancel 55 - read$NOCANCEL$UNIX2003 __read_nocancel 56 - read$UNIX2003 __read 57 - readv __readv_nocancel 58 - readv$NOCANCEL$UNIX2003 __readv_nocancel 59 - readv$UNIX2003 __readv 60 - recvfrom$NOCANCEL$UNIX2003 __recvfrom_nocancel 61 - recvfrom$UNIX2003 __recvfrom 62 - recvmsg$NOCANCEL$UNIX2003 __recvmsg_nocancel 63 - recvmsg$UNIX2003 __recvmsg 64 - select$DARWIN_EXTSN __select 65 - select$DARWIN_EXTSN$NOCANCEL __select_nocancel 66 - sem_open __sem_open 67 - sem_wait __sem_wait_nocancel 68 - sem_wait$NOCANCEL$UNIX2003 __sem_wait_nocancel 69 - sem_wait$UNIX2003 __sem_wait 70 - semctl$UNIX2003 __semctl 71 - semsys __semsys 72 - sendmsg$NOCANCEL$UNIX2003 __sendmsg_nocancel 73 - sendmsg$UNIX2003 __sendmsg 74 - sendto$NOCANCEL$UNIX2003 __sendto_nocancel 75 - sendto$UNIX2003 __sendto 76 - setattrlist$UNIX2003 __setattrlist 77 - setpgrp __setpgid 78 - setregid$UNIX2003 __setregid 79 - setreuid$UNIX2003 __setreuid 80 - shmctl$UNIX2003 __shmctl 81 - shmsys __shmsys 82 - shm_open __shm_open 83 - socketpair$UNIX2003 __socketpair 84 - stat$INODE64 __stat64 85 - statfs$INODE64 __statfs64 86 - waitid __waitid_nocancel 87 - waitid$NOCANCEL$UNIX2003 __waitid_nocancel 88 - waitid$UNIX2003 __waitid 89 - write __write_nocancel 90 - write$NOCANCEL$UNIX2003 __write_nocancel 91 - write$UNIX2003 __write 92 - writev __writev_nocancel 93 - writev$NOCANCEL$UNIX2003 __writev_nocancel 94 - writev$UNIX2003 __writev 1 + _accept$NOCANCEL$UNIX2003 ___accept_nocancel 2 + _accept$UNIX2003 ___accept 3 + _aio_suspend ___aio_suspend_nocancel 4 + _aio_suspend$NOCANCEL$UNIX2003 ___aio_suspend_nocancel 5 + _aio_suspend$UNIX2003 ___aio_suspend 6 + _bind$UNIX2003 ___bind 7 + _close ___close_nocancel 8 + _close$NOCANCEL$UNIX2003 ___close_nocancel 9 + _close$UNIX2003 ___close 10 + _chmod ___chmod 11 + _connect$NOCANCEL$UNIX2003 ___connect_nocancel 12 + _connect$UNIX2003 ___connect 13 + _fcntl ___fcntl_nocancel 14 + _fcntl$NOCANCEL$UNIX2003 ___fcntl_nocancel 15 + _fcntl$UNIX2003 ___fcntl 16 + _fstat$INODE64 ___fstat64 17 + _fstatat$INODE64 ___fstatat64 18 + _fstatfs$INODE64 ___fstatfs64 19 + _fsync ___fsync_nocancel 20 + _fsync$NOCANCEL$UNIX2003 ___fsync_nocancel 21 + _fsync$UNIX2003 ___fsync 22 + _getattrlist$UNIX2003 ___getattrlist 23 + _getfsstat$INODE64 ___getfsstat64 24 + _getpeername$UNIX2003 ___getpeername 25 + _getsockname$UNIX2003 ___getsockname 26 + _lchown$UNIX2003 ___lchown 27 + _listen$UNIX2003 ___listen 28 + _lstat$INODE64 ___lstat64 29 + _mmap ___mmap 30 + _mprotect$UNIX2003 ___mprotect 31 + _msgctl$UNIX2003 ___msgctl 32 + _msgrcv ___msgrcv_nocancel 33 + _msgrcv$NOCANCEL$UNIX2003 ___msgrcv_nocancel 34 + _msgrcv$UNIX2003 ___msgrcv 35 + _msgsnd ___msgsnd_nocancel 36 + _msgsnd$NOCANCEL$UNIX2003 ___msgsnd_nocancel 37 + _msgsnd$UNIX2003 ___msgsnd 38 + _msgsys ___msgsys 39 + _msync$NOCANCEL$UNIX2003 ___msync_nocancel 40 + _msync$UNIX2003 ___msync 41 + _open$NOCANCEL$UNIX2003 ___open_nocancel 42 + _open$UNIX2003 ___open 43 + _openat$NOCANCEL ___openat_nocancel 44 + _openat ___openat 45 + _poll ___poll_nocancel 46 + _poll$NOCANCEL$UNIX2003 ___poll_nocancel 47 + _poll$UNIX2003 ___poll 48 + _pread ___pread_nocancel 49 + _pread$NOCANCEL$UNIX2003 ___pread_nocancel 50 + _pread$UNIX2003 ___pread 51 + _pwrite ___pwrite_nocancel 52 + _pwrite$NOCANCEL$UNIX2003 ___pwrite_nocancel 53 + _pwrite$UNIX2003 ___pwrite 54 + _read ___read_nocancel 55 + _read$NOCANCEL$UNIX2003 ___read_nocancel 56 + _read$UNIX2003 ___read 57 + _readv ___readv_nocancel 58 + _readv$NOCANCEL$UNIX2003 ___readv_nocancel 59 + _readv$UNIX2003 ___readv 60 + _recvfrom$NOCANCEL$UNIX2003 ___recvfrom_nocancel 61 + _recvfrom$UNIX2003 ___recvfrom 62 + _recvmsg$NOCANCEL$UNIX2003 ___recvmsg_nocancel 63 + _recvmsg$UNIX2003 ___recvmsg 64 + _select$DARWIN_EXTSN ___select 65 + _select$DARWIN_EXTSN$NOCANCEL ___select_nocancel 66 + _sem_open ___sem_open 67 + _sem_wait ___sem_wait_nocancel 68 + _sem_wait$NOCANCEL$UNIX2003 ___sem_wait_nocancel 69 + _sem_wait$UNIX2003 ___sem_wait 70 + _semctl$UNIX2003 ___semctl 71 + _semsys ___semsys 72 + _sendmsg$NOCANCEL$UNIX2003 ___sendmsg_nocancel 73 + _sendmsg$UNIX2003 ___sendmsg 74 + _sendto$NOCANCEL$UNIX2003 ___sendto_nocancel 75 + _sendto$UNIX2003 ___sendto 76 + _setattrlist$UNIX2003 ___setattrlist 77 + _setpgrp ___setpgid 78 + _setregid$UNIX2003 ___setregid 79 + _setreuid$UNIX2003 ___setreuid 80 + _shmctl$UNIX2003 ___shmctl 81 + _shmsys ___shmsys 82 + _shm_open ___shm_open 83 + _socketpair$UNIX2003 ___socketpair 84 + _stat$INODE64 ___stat64 85 + _statfs$INODE64 ___statfs64 86 + _waitid ___waitid_nocancel 87 + _waitid$NOCANCEL$UNIX2003 ___waitid_nocancel 88 + _waitid$UNIX2003 ___waitid 89 + _write ___write_nocancel 90 + _write$NOCANCEL$UNIX2003 ___write_nocancel 91 + _write$UNIX2003 ___write 92 + _writev ___writev_nocancel 93 + _writev$NOCANCEL$UNIX2003 ___writev_nocancel 94 + _writev$UNIX2003 ___writev 95 95 96 - ioctl __ioctl 97 - sigaltstack __sigaltstack 98 - fchmod __fchmod 99 - setrlimit __setrlimit 100 - getrlimit __getrlimit 96 + _ioctl ___ioctl 97 + _sigaltstack ___sigaltstack 98 + _fchmod ___fchmod 99 + _setrlimit ___setrlimit 100 + _getrlimit ___getrlimit
+60 -60
src/kernel/libsyscall/Platforms/MacOSX/x86_64/syscall.map
··· 1 - accept$NOCANCEL __accept_nocancel 2 - aio_suspend$NOCANCEL __aio_suspend_nocancel 3 - close$NOCANCEL __close_nocancel 4 - connect$NOCANCEL __connect_nocancel 5 - fstat$INODE64 __fstat64 6 - fstatat$INODE64 __fstatat64 7 - fstatfs$INODE64 __fstatfs64 8 - fsync$NOCANCEL __fsync_nocancel 9 - getfsstat$INODE64 __getfsstat64 10 - lstat$INODE64 __lstat64 11 - msgrcv$NOCANCEL __msgrcv_nocancel 12 - msgsnd$NOCANCEL __msgsnd_nocancel 13 - msgsys __msgsys 14 - msync$NOCANCEL __msync_nocancel 15 - open$NOCANCEL __open_nocancel 16 - openat$NOCANCEL __openat_nocancel 17 - poll$NOCANCEL __poll_nocancel 18 - pread$NOCANCEL __pread_nocancel 19 - pwrite$NOCANCEL __pwrite_nocancel 20 - read$NOCANCEL __read_nocancel 21 - readv$NOCANCEL __readv_nocancel 22 - recvfrom$NOCANCEL __recvfrom_nocancel 23 - recvmsg$NOCANCEL __recvmsg_nocancel 24 - select$DARWIN_EXTSN __select 25 - select$DARWIN_EXTSN$NOCANCEL __select_nocancel 26 - sem_wait$NOCANCEL __sem_wait_nocancel 27 - semsys __semsys 28 - sendmsg$NOCANCEL __sendmsg_nocancel 29 - sendto$NOCANCEL __sendto_nocancel 30 - stat$INODE64 __stat64 31 - statfs$INODE64 __statfs64 32 - waitid$NOCANCEL __waitid_nocancel 33 - write$NOCANCEL __write_nocancel 34 - writev$NOCANCEL __writev_nocancel 1 + _accept$NOCANCEL ___accept_nocancel 2 + _aio_suspend$NOCANCEL ___aio_suspend_nocancel 3 + _close$NOCANCEL ___close_nocancel 4 + _connect$NOCANCEL ___connect_nocancel 5 + _fstat$INODE64 ___fstat64 6 + _fstatat$INODE64 ___fstatat64 7 + _fstatfs$INODE64 ___fstatfs64 8 + _fsync$NOCANCEL ___fsync_nocancel 9 + _getfsstat$INODE64 ___getfsstat64 10 + _lstat$INODE64 ___lstat64 11 + _msgrcv$NOCANCEL ___msgrcv_nocancel 12 + _msgsnd$NOCANCEL ___msgsnd_nocancel 13 + _msgsys ___msgsys 14 + _msync$NOCANCEL ___msync_nocancel 15 + _open$NOCANCEL ___open_nocancel 16 + _openat$NOCANCEL ___openat_nocancel 17 + _poll$NOCANCEL ___poll_nocancel 18 + _pread$NOCANCEL ___pread_nocancel 19 + _pwrite$NOCANCEL ___pwrite_nocancel 20 + _read$NOCANCEL ___read_nocancel 21 + _readv$NOCANCEL ___readv_nocancel 22 + _recvfrom$NOCANCEL ___recvfrom_nocancel 23 + _recvmsg$NOCANCEL ___recvmsg_nocancel 24 + _select$DARWIN_EXTSN ___select 25 + _select$DARWIN_EXTSN$NOCANCEL ___select_nocancel 26 + _sem_wait$NOCANCEL ___sem_wait_nocancel 27 + _semsys ___semsys 28 + _sendmsg$NOCANCEL ___sendmsg_nocancel 29 + _sendto$NOCANCEL ___sendto_nocancel 30 + _stat$INODE64 ___stat64 31 + _statfs$INODE64 ___statfs64 32 + _waitid$NOCANCEL ___waitid_nocancel 33 + _write$NOCANCEL ___write_nocancel 34 + _writev$NOCANCEL ___writev_nocancel 35 35 36 - accept __accept 37 - bind __bind 38 - connect __connect 39 - getattrlist __getattrlist 40 - getpeername __getpeername 41 - getsockname __getsockname 42 - lchown __lchown 43 - listen __listen 44 - mprotect __mprotect 45 - msgctl __msgctl 46 - msync __msync 47 - open __open 48 - openat __openat 49 - recvfrom __recvfrom 50 - recvmsg __recvmsg 51 - semctl __semctl 52 - sem_open __sem_open 53 - sendmsg __sendmsg 54 - sendto __sendto 55 - setattrlist __setattrlist 56 - setregid __setregid 57 - setreuid __setreuid 58 - shmctl __shmctl 59 - shmsys __shmsys 60 - shm_open __shm_open 61 - socketpair __socketpair 36 + _accept ___accept 37 + _bind ___bind 38 + _connect ___connect 39 + _getattrlist ___getattrlist 40 + _getpeername ___getpeername 41 + _getsockname ___getsockname 42 + _lchown ___lchown 43 + _listen ___listen 44 + _mprotect ___mprotect 45 + _msgctl ___msgctl 46 + _msync ___msync 47 + _open ___open 48 + _openat ___openat 49 + _recvfrom ___recvfrom 50 + _recvmsg ___recvmsg 51 + _semctl ___semctl 52 + _sem_open ___sem_open 53 + _sendmsg ___sendmsg 54 + _sendto ___sendto 55 + _setattrlist ___setattrlist 56 + _setregid ___setregid 57 + _setreuid ___setreuid 58 + _shmctl ___shmctl 59 + _shmsys ___shmsys 60 + _shm_open ___shm_open 61 + _socketpair ___socketpair
+15 -15
src/kernel/libsyscall/Platforms/syscall.map
··· 1 - __sandbox_me __mac_execve 2 - __sandbox_mm __mac_mount 3 - __sandbox_ms __mac_syscall 4 - __sandbox_msp __mac_set_proc 5 - _exit __exit 6 - accessx_np __access_extended 7 - getsgroups_np __getsgroups 8 - getwgroups_np __getwgroups 1 + ___sandbox_me ___mac_execve 2 + ___sandbox_mm ___mac_mount 3 + ___sandbox_ms ___mac_syscall 4 + ___sandbox_msp ___mac_set_proc 5 + __exit ___exit 6 + _accessx_np ___access_extended 7 + _getsgroups_np ___getsgroups 8 + _getwgroups_np ___getwgroups 9 9 # initgroups wrapper is defined in Libinfo 10 - initgroups 11 - posix_madvise __madvise 12 - pthread_getugid_np __gettid 13 - pthread_setugid_np __settid 14 - setsgroups_np __setsgroups 15 - setwgroups_np __setwgroups 16 - wait4 __wait4_nocancel 10 + _initgroups 11 + _posix_madvise ___madvise 12 + _pthread_getugid_np ___gettid 13 + _pthread_setugid_np ___settid 14 + _setsgroups_np ___setsgroups 15 + _setwgroups_np ___setwgroups 16 + _wait4 ___wait4_nocancel
+6 -6
src/kernel/libsyscall/custom/SYS.h
··· 72 72 #ifndef DARLING 73 73 #define UNIX_SYSCALL_SYSENTER call __sysenter_trap 74 74 #else 75 - #define UNIX_SYSCALL_SYSENTER call __darling_bsd_syscall@PLT 75 + #define UNIX_SYSCALL_SYSENTER call __darling_bsd_syscall 76 76 #endif 77 77 78 78 #define UNIX_SYSCALL(name, nargs) \ ··· 146 146 147 147 #define UNIX_SYSCALL(name, nargs) \ 148 148 .globl cerror ;\ 149 - LEAF(name, 0) ;\ 149 + LEAF(_#name, 0) ;\ 150 150 movl $ SYS_##name, %eax ;\ 151 - call __darling_bsd_syscall@PLT ;\ 151 + call __darling_bsd_syscall ;\ 152 152 jnb 2f ;\ 153 153 movq %rax, %rdi ;\ 154 - BRANCH_EXTERN(cerror) ;\ 154 + BRANCH_EXTERN(_cerror) ;\ 155 155 2: 156 156 157 157 #define UNIX_SYSCALL_NONAME(name, nargs, cerror) \ 158 158 .globl cerror ;\ 159 159 movl $ SYS_##name, %eax ;\ 160 - call __darling_bsd_syscall@PLT ;\ 160 + call __darling_bsd_syscall ;\ 161 161 jnb 2f ;\ 162 162 movq %rax, %rdi ;\ 163 - BRANCH_EXTERN(cerror) ;\ 163 + BRANCH_EXTERN(_##cerror) ;\ 164 164 2: 165 165 166 166
+4 -4
src/kernel/libsyscall/custom/custom.s
··· 69 69 movl $6,%eax 70 70 MACHDEP_SYSCALL_TRAP 71 71 jnb 2f 72 - jmp tramp_cerror@PLT 72 + jmp tramp_cerror 73 73 2: ret 74 74 75 75 ··· 79 79 movl $5,%eax 80 80 MACHDEP_SYSCALL_TRAP 81 81 jnb 2f 82 - jmp tramp_cerror@PLT 82 + jmp tramp_cerror 83 83 2: ret 84 84 85 85 #elif defined(__x86_64__) ··· 91 91 MACHDEP_SYSCALL_TRAP 92 92 jnb 2f 93 93 movq %rax, %rdi 94 - jmp cerror@PLT 94 + jmp cerror 95 95 2: ret 96 96 97 97 ··· 102 102 MACHDEP_SYSCALL_TRAP 103 103 jnb 2f 104 104 movq %rax, %rdi 105 - jmp cerror@PLT 105 + jmp cerror 106 106 2: ret 107 107 108 108 #endif
+2 -6
src/kernel/libsyscall/custom/errno.c
··· 43 43 typedef uint64_t cerror_return_t; 44 44 #endif 45 45 46 - extern void _pthread_exit_if_canceled(int error); 47 - 48 46 #undef errno 49 - 50 - extern int darwin_errno; 51 - 52 - #define errno darwin_errno 47 + int errno; 48 + extern void _pthread_exit_if_canceled(int error); 53 49 54 50 int * 55 51 __error(void)
-12
src/kernel/libsyscall/custom/var_errno.c
··· 1 - 2 - #if defined(__x86_64__) || defined(__i386__) 3 - __asm__(".section .bss\n" 4 - ".global darwin_errno\n" 5 - ".hidden darwin_errno\n" 6 - ".symver darwin_errno, errno@DARWIN\n" 7 - ".comm darwin_errno, 4\n" 8 - "darwin_errno:\n" 9 - ".word 0\n"); 10 - #else 11 - # warning No darwin_errno definition! 12 - #endif
+2 -2
src/kernel/libsyscall/sys_i386/SYS.h
··· 158 158 .globl cerror ;\ 159 159 LEAF(name, 0) ;\ 160 160 movl $ SYS_##name, %eax ;\ 161 - call __darling_bsd_syscall@PLT ;\ 161 + call __darling_bsd_syscall ;\ 162 162 cmpl $-4095, %eax ;\ 163 163 jb 3f ;\ 164 164 movq %rax, %rdi ;\ ··· 168 168 #define UNIX_SYSCALL_NONAME(name, nargs, cerror) \ 169 169 .globl cerror ;\ 170 170 movl $ SYS_##name, %eax ;\ 171 - call __darling_bsd_syscall@PLT ;\ 171 + call __darling_bsd_syscall ;\ 172 172 cmpl $-4095, %eax ;\ 173 173 jb 3f ;\ 174 174 movq %rax, %rdi ;\
+4 -4
src/kernel/libsyscall/sys_i386/custom.S
··· 69 69 movl $6,%eax 70 70 MACHDEP_SYSCALL_TRAP 71 71 jnb 2f 72 - jmp tramp_cerror@PLT 72 + jmp tramp_cerror 73 73 2: ret 74 74 75 75 ··· 79 79 movl $5,%eax 80 80 MACHDEP_SYSCALL_TRAP 81 81 jnb 2f 82 - jmp tramp_cerror@PLT 82 + jmp tramp_cerror 83 83 2: ret 84 84 85 85 #elif defined(__x86_64__) ··· 91 91 MACHDEP_SYSCALL_TRAP 92 92 jnb 2f 93 93 movq %rax, %rdi 94 - jmp cerror@PLT 94 + jmp cerror 95 95 2: ret 96 96 97 97 ··· 102 102 MACHDEP_SYSCALL_TRAP 103 103 jnb 2f 104 104 movq %rax, %rdi 105 - jmp cerror@PLT 105 + jmp cerror 106 106 2: ret 107 107 108 108 #endif
+8 -14
src/kernel/libsyscall/sys_x86-64/SYS.h
··· 72 72 #ifndef DARLING 73 73 #define UNIX_SYSCALL_SYSENTER call __sysenter_trap 74 74 #else 75 - #define UNIX_SYSCALL_SYSENTER call __darling_bsd_syscall@PLT 75 + #define UNIX_SYSCALL_SYSENTER call __darling_bsd_syscall 76 76 #endif 77 77 78 78 #define UNIX_SYSCALL(name, nargs) \ ··· 146 146 147 147 #define UNIX_SYSCALL(name, nargs) \ 148 148 .globl cerror ;\ 149 - .type name, @function ;\ 150 - LEAF(name, 0) ;\ 149 + LEAF(_#name, 0) ;\ 151 150 movl $ SYS_##name, %eax ;\ 152 - call __darling_bsd_syscall@PLT ;\ 153 - cmpq $-4095, %rax ;\ 154 - jb 2f ;\ 151 + call __darling_bsd_syscall ;\ 152 + jnb 2f ;\ 155 153 movq %rax, %rdi ;\ 156 - negq %rdi ;\ 157 - BRANCH_EXTERN(cerror) ;\ 154 + BRANCH_EXTERN(_cerror) ;\ 158 155 2: 159 156 160 157 #define UNIX_SYSCALL_NONAME(name, nargs, cerror) \ 161 158 .globl cerror ;\ 162 - .type name, @function ;\ 163 159 movl $ SYS_##name, %eax ;\ 164 - call __darling_bsd_syscall@PLT ;\ 165 - cmpq $-4095, %rax ;\ 166 - jb 2f ;\ 160 + call __darling_bsd_syscall ;\ 161 + jnb 2f ;\ 167 162 movq %rax, %rdi ;\ 168 - negq %rdi ;\ 169 - BRANCH_EXTERN(cerror) ;\ 163 + BRANCH_EXTERN(_##cerror) ;\ 170 164 2: 171 165 172 166
+1 -1
src/kernel/libsyscall/sys_x86-64/____old_semwait_signal_nocancel.S src/kernel/libsyscall/sys_x86-64/_____old_semwait_signal_nocancel.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(____old_semwait_signal_nocancel, __old_semwait_signal_nocancel, 5, cerror_nocancel) 9 + __SYSCALL2(_____old_semwait_signal_nocancel, __old_semwait_signal_nocancel, 5, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/____sigwait_nocancel.S src/kernel/libsyscall/sys_x86-64/_____sigwait_nocancel.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(____sigwait_nocancel, __sigwait_nocancel, 2, cerror_nocancel) 9 + __SYSCALL2(_____sigwait_nocancel, __sigwait_nocancel, 2, cerror_nocancel) 10 10 #endif 11 11
+11
src/kernel/libsyscall/sys_x86-64/___kdebug_trace64.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 36 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_kdebug_trace64 5 + #error "SYS_kdebug_trace64 not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__x86_64__) 9 + __SYSCALL2(___kdebug_trace64, kdebug_trace64, 5, cerror_nocancel) 10 + #endif 11 +
+11
src/kernel/libsyscall/sys_x86-64/___kdebug_trace_string.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 16 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_kdebug_trace_string 5 + #error "SYS_kdebug_trace_string not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__x86_64__) 9 + __SYSCALL2(___kdebug_trace_string, kdebug_trace_string, 3, cerror_nocancel) 10 + #endif 11 +
+11
src/kernel/libsyscall/sys_x86-64/___microstackshot.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_microstackshot 5 + #error "SYS_microstackshot not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__x86_64__) 9 + __SYSCALL2(___microstackshot, microstackshot, 3, cerror_nocancel) 10 + #endif 11 +
+11
src/kernel/libsyscall/sys_x86-64/___persona.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 20 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_persona 5 + #error "SYS_persona not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__x86_64__) 9 + __SYSCALL2(___persona, persona, 5, cerror_nocancel) 10 + #endif 11 +
+11
src/kernel/libsyscall/sys_x86-64/___pselect.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 24 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_pselect 5 + #error "SYS_pselect not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__x86_64__) 9 + __SYSCALL2(___pselect, pselect, 6, cerror_nocancel) 10 + #endif 11 +
+11
src/kernel/libsyscall/sys_x86-64/___pselect_nocancel.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 24 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_pselect_nocancel 5 + #error "SYS_pselect_nocancel not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__x86_64__) 9 + __SYSCALL2(___pselect_nocancel, pselect_nocancel, 6, cerror_nocancel) 10 + #endif 11 +
+11
src/kernel/libsyscall/sys_x86-64/___stack_snapshot_with_config.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_stack_snapshot_with_config 5 + #error "SYS_stack_snapshot_with_config not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__x86_64__) 9 + __SYSCALL2(___stack_snapshot_with_config, stack_snapshot_with_config, 3, cerror_nocancel) 10 + #endif 11 +
+11
src/kernel/libsyscall/sys_x86-64/___work_interval_ctl.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 20 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_work_interval_ctl 5 + #error "SYS_work_interval_ctl not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__x86_64__) 9 + __SYSCALL2(___work_interval_ctl, work_interval_ctl, 4, cerror_nocancel) 10 + #endif 11 +
+3 -3
src/kernel/libsyscall/sys_x86-64/__accept.S src/kernel/libsyscall/sys_x86-64/___accept.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__accept, accept, 3, cerror) 9 + __SYSCALL2(___accept, accept, 3, cerror) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl accept 14 - accept = __accept 13 + .globl _accept 14 + .set _accept, ___accept 15 15 #endif 16 16
+3 -3
src/kernel/libsyscall/sys_x86-64/__accept_nocancel.S src/kernel/libsyscall/sys_x86-64/___accept_nocancel.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__accept_nocancel, accept_nocancel, 3, cerror_nocancel) 9 + __SYSCALL2(___accept_nocancel, accept_nocancel, 3, cerror_nocancel) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl accept$NOCANCEL 14 - accept$NOCANCEL = __accept_nocancel 13 + .globl _accept$NOCANCEL 14 + .set _accept$NOCANCEL, ___accept_nocancel 15 15 #endif 16 16
+3 -3
src/kernel/libsyscall/sys_x86-64/__access_extended.S src/kernel/libsyscall/sys_x86-64/___access_extended.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__access_extended, access_extended, 4, cerror_nocancel) 9 + __SYSCALL2(___access_extended, access_extended, 4, cerror_nocancel) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl accessx_np 14 - accessx_np = __access_extended 13 + .globl _accessx_np 14 + .set _accessx_np, ___access_extended 15 15 #endif 16 16
+3 -3
src/kernel/libsyscall/sys_x86-64/__aio_suspend_nocancel.S src/kernel/libsyscall/sys_x86-64/___aio_suspend_nocancel.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__aio_suspend_nocancel, aio_suspend_nocancel, 3, cerror_nocancel) 9 + __SYSCALL2(___aio_suspend_nocancel, aio_suspend_nocancel, 3, cerror_nocancel) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl aio_suspend$NOCANCEL 14 - aio_suspend$NOCANCEL = __aio_suspend_nocancel 13 + .globl _aio_suspend$NOCANCEL 14 + .set _aio_suspend$NOCANCEL, ___aio_suspend_nocancel 15 15 #endif 16 16
+3 -3
src/kernel/libsyscall/sys_x86-64/__bind.S src/kernel/libsyscall/sys_x86-64/___bind.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__bind, bind, 3, cerror_nocancel) 9 + __SYSCALL2(___bind, bind, 3, cerror_nocancel) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl bind 14 - bind = __bind 13 + .globl _bind 14 + .set _bind, ___bind 15 15 #endif 16 16
+1 -1
src/kernel/libsyscall/sys_x86-64/__bsdthread_create.S src/kernel/libsyscall/sys_x86-64/___bsdthread_create.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__bsdthread_create, bsdthread_create, 5, cerror_nocancel) 9 + __SYSCALL2(___bsdthread_create, bsdthread_create, 5, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/__bsdthread_ctl.S src/kernel/libsyscall/sys_x86-64/___bsdthread_ctl.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__bsdthread_ctl, bsdthread_ctl, 4, cerror_nocancel) 9 + __SYSCALL2(___bsdthread_ctl, bsdthread_ctl, 4, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/__bsdthread_register.S src/kernel/libsyscall/sys_x86-64/___bsdthread_register.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__bsdthread_register, bsdthread_register, 7, cerror_nocancel) 9 + __SYSCALL2(___bsdthread_register, bsdthread_register, 7, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/__bsdthread_terminate.S src/kernel/libsyscall/sys_x86-64/___bsdthread_terminate.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__bsdthread_terminate, bsdthread_terminate, 4, cerror_nocancel) 9 + __SYSCALL2(___bsdthread_terminate, bsdthread_terminate, 4, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/__chmod.S src/kernel/libsyscall/sys_x86-64/___chmod.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__chmod, chmod, 2, cerror_nocancel) 9 + __SYSCALL2(___chmod, chmod, 2, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/__chmod_extended.S src/kernel/libsyscall/sys_x86-64/___chmod_extended.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__chmod_extended, chmod_extended, 5, cerror_nocancel) 9 + __SYSCALL2(___chmod_extended, chmod_extended, 5, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/__chud.S src/kernel/libsyscall/sys_x86-64/___chud.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__chud, chud, 6, cerror_nocancel) 9 + __SYSCALL2(___chud, chud, 6, cerror_nocancel) 10 10 #endif 11 11
+3 -3
src/kernel/libsyscall/sys_x86-64/__close_nocancel.S src/kernel/libsyscall/sys_x86-64/___close_nocancel.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__close_nocancel, close_nocancel, 1, cerror_nocancel) 9 + __SYSCALL2(___close_nocancel, close_nocancel, 1, cerror_nocancel) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl close$NOCANCEL 14 - close$NOCANCEL = __close_nocancel 13 + .globl _close$NOCANCEL 14 + .set _close$NOCANCEL, ___close_nocancel 15 15 #endif 16 16
+1 -1
src/kernel/libsyscall/sys_x86-64/__coalition.S src/kernel/libsyscall/sys_x86-64/___coalition.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__coalition, coalition, 3, cerror_nocancel) 9 + __SYSCALL2(___coalition, coalition, 3, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/__coalition_info.S src/kernel/libsyscall/sys_x86-64/___coalition_info.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__coalition_info, coalition_info, 4, cerror_nocancel) 9 + __SYSCALL2(___coalition_info, coalition_info, 4, cerror_nocancel) 10 10 #endif 11 11
+3 -3
src/kernel/libsyscall/sys_x86-64/__connect.S src/kernel/libsyscall/sys_x86-64/___connect.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__connect, connect, 3, cerror) 9 + __SYSCALL2(___connect, connect, 3, cerror) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl connect 14 - connect = __connect 13 + .globl _connect 14 + .set _connect, ___connect 15 15 #endif 16 16
+3 -3
src/kernel/libsyscall/sys_x86-64/__connect_nocancel.S src/kernel/libsyscall/sys_x86-64/___connect_nocancel.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__connect_nocancel, connect_nocancel, 3, cerror_nocancel) 9 + __SYSCALL2(___connect_nocancel, connect_nocancel, 3, cerror_nocancel) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl connect$NOCANCEL 14 - connect$NOCANCEL = __connect_nocancel 13 + .globl _connect$NOCANCEL 14 + .set _connect$NOCANCEL, ___connect_nocancel 15 15 #endif 16 16
+1 -1
src/kernel/libsyscall/sys_x86-64/__copyfile.S src/kernel/libsyscall/sys_x86-64/___copyfile.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__copyfile, copyfile, 4, cerror_nocancel) 9 + __SYSCALL2(___copyfile, copyfile, 4, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/__csrctl.S src/kernel/libsyscall/sys_x86-64/___csrctl.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__csrctl, csrctl, 3, cerror_nocancel) 9 + __SYSCALL2(___csrctl, csrctl, 3, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/__delete.S src/kernel/libsyscall/sys_x86-64/___delete.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__delete, delete, 1, cerror_nocancel) 9 + __SYSCALL2(___delete, delete, 1, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/__disable_threadsignal.S src/kernel/libsyscall/sys_x86-64/___disable_threadsignal.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__disable_threadsignal, __disable_threadsignal, 1, cerror_nocancel) 9 + __SYSCALL2(___disable_threadsignal, __disable_threadsignal, 1, cerror_nocancel) 10 10 #endif 11 11
+3 -3
src/kernel/libsyscall/sys_x86-64/__exit.S src/kernel/libsyscall/sys_x86-64/___exit.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__exit, exit, 1, cerror_nocancel) 9 + __SYSCALL2(___exit, exit, 1, cerror_nocancel) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl _exit 14 - _exit = __exit 13 + .globl __exit 14 + .set __exit, ___exit 15 15 #endif 16 16
+1 -1
src/kernel/libsyscall/sys_x86-64/__fchmod.S src/kernel/libsyscall/sys_x86-64/___fchmod.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__fchmod, fchmod, 2, cerror_nocancel) 9 + __SYSCALL2(___fchmod, fchmod, 2, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/__fchmod_extended.S src/kernel/libsyscall/sys_x86-64/___fchmod_extended.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__fchmod_extended, fchmod_extended, 5, cerror_nocancel) 9 + __SYSCALL2(___fchmod_extended, fchmod_extended, 5, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/__fcntl.S src/kernel/libsyscall/sys_x86-64/___fcntl.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__fcntl, fcntl, 3, cerror) 9 + __SYSCALL2(___fcntl, fcntl, 3, cerror) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/__fcntl_nocancel.S src/kernel/libsyscall/sys_x86-64/___fcntl_nocancel.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__fcntl_nocancel, fcntl_nocancel, 3, cerror_nocancel) 9 + __SYSCALL2(___fcntl_nocancel, fcntl_nocancel, 3, cerror_nocancel) 10 10 #endif 11 11
+7 -13
src/kernel/libsyscall/sys_x86-64/__fork.S src/kernel/libsyscall/sys_x86-64/___fork.S
··· 47 47 48 48 #include "SYS.h" 49 49 50 - #ifdef DARLING 51 - # define ___fork __fork 52 - # define _cerror cerror 53 - #endif 54 - 55 50 #if defined(__i386__) 56 51 57 52 LEAF(___fork, 0) ··· 88 83 UNIX_SYSCALL_TRAP // do the system call 89 84 jnc L1 // jump if CF==0 90 85 #else 91 - movl $ SYS_fork, %eax 92 - call __darling_bsd_syscall@PLT 93 - cmpq $0, %rax 86 + movl $ SYS_fork, %eax 87 + call __darling_bsd_syscall 88 + cmpq $0, %rax 94 89 jnb L1 95 90 #endif 96 - 97 91 movq %rax, %rdi 98 92 CALL_EXTERN(_cerror) 99 93 movq $-1, %rax ··· 105 99 orl %edx,%edx // CF=OF=0, ZF set if zero result 106 100 jz L2 // parent, since r1 == 0 in parent, 1 in child 107 101 #else 108 - testl %eax,%eax 109 - jnz L2 110 - #endif 111 - 102 + testl %eax, %eax 103 + jnz L2 104 + #endif 105 + 112 106 //child here... 113 107 xorq %rax, %rax 114 108 PICIFY(__current_pid)
+1 -1
src/kernel/libsyscall/sys_x86-64/__fsgetpath.S src/kernel/libsyscall/sys_x86-64/___fsgetpath.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__fsgetpath, fsgetpath, 4, cerror_nocancel) 9 + __SYSCALL2(___fsgetpath, fsgetpath, 4, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/__fstat64_extended.S src/kernel/libsyscall/sys_x86-64/___fstat64_extended.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__fstat64_extended, fstat64_extended, 4, cerror_nocancel) 9 + __SYSCALL2(___fstat64_extended, fstat64_extended, 4, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/__fstat_extended.S src/kernel/libsyscall/sys_x86-64/___fstat_extended.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__fstat_extended, fstat_extended, 4, cerror_nocancel) 9 + __SYSCALL2(___fstat_extended, fstat_extended, 4, cerror_nocancel) 10 10 #endif 11 11
+3 -3
src/kernel/libsyscall/sys_x86-64/__fsync_nocancel.S src/kernel/libsyscall/sys_x86-64/___fsync_nocancel.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__fsync_nocancel, fsync_nocancel, 1, cerror_nocancel) 9 + __SYSCALL2(___fsync_nocancel, fsync_nocancel, 1, cerror_nocancel) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl fsync$NOCANCEL 14 - fsync$NOCANCEL = __fsync_nocancel 13 + .globl _fsync$NOCANCEL 14 + .set _fsync$NOCANCEL, ___fsync_nocancel 15 15 #endif 16 16
+3 -3
src/kernel/libsyscall/sys_x86-64/__getattrlist.S src/kernel/libsyscall/sys_x86-64/___getattrlist.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__getattrlist, getattrlist, 5, cerror_nocancel) 9 + __SYSCALL2(___getattrlist, getattrlist, 5, cerror_nocancel) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl getattrlist 14 - getattrlist = __getattrlist 13 + .globl _getattrlist 14 + .set _getattrlist, ___getattrlist 15 15 #endif 16 16
+1 -1
src/kernel/libsyscall/sys_x86-64/__getdirentries64.S src/kernel/libsyscall/sys_x86-64/___getdirentries64.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__getdirentries64, getdirentries64, 4, cerror_nocancel) 9 + __SYSCALL2(___getdirentries64, getdirentries64, 4, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/__gethostuuid.S src/kernel/libsyscall/sys_x86-64/___gethostuuid.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__gethostuuid, gethostuuid, 3, cerror_nocancel) 9 + __SYSCALL2(___gethostuuid, gethostuuid, 3, cerror_nocancel) 10 10 #endif 11 11
-11
src/kernel/libsyscall/sys_x86-64/__getlcid.S
··· 1 - #define __SYSCALL_32BIT_ARG_BYTES 4 2 - #include "SYS.h" 3 - 4 - #ifndef SYS_getlcid 5 - #error "SYS_getlcid not defined. The header files libsyscall is building against do not match syscalls.master." 6 - #endif 7 - 8 - #if defined(__x86_64__) 9 - __SYSCALL2(__getlcid, getlcid, 1, cerror_nocancel) 10 - #endif 11 -
+1 -1
src/kernel/libsyscall/sys_x86-64/__getlogin.S src/kernel/libsyscall/sys_x86-64/___getlogin.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__getlogin, getlogin, 2, cerror) 9 + __SYSCALL2(___getlogin, getlogin, 2, cerror) 10 10 #endif 11 11
+3 -3
src/kernel/libsyscall/sys_x86-64/__getpeername.S src/kernel/libsyscall/sys_x86-64/___getpeername.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__getpeername, getpeername, 3, cerror_nocancel) 9 + __SYSCALL2(___getpeername, getpeername, 3, cerror_nocancel) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl getpeername 14 - getpeername = __getpeername 13 + .globl _getpeername 14 + .set _getpeername, ___getpeername 15 15 #endif 16 16
+4 -8
src/kernel/libsyscall/sys_x86-64/__getpid.S src/kernel/libsyscall/sys_x86-64/___getpid.S
··· 29 29 30 30 #include "SYS.h" 31 31 32 - #ifdef DARLING 33 - # define ___getpid __getpid 34 - #endif 35 - 36 32 #if defined(__i386__) 37 33 38 34 .data 39 35 .globl __current_pid 40 - .hidden __current_pid 36 + .private_extern __current_pid 41 37 L__current_pid_addr: 42 38 __current_pid: 43 39 .long 0 ··· 80 76 81 77 .data 82 78 .globl __current_pid 83 - .hidden __current_pid 79 + .private_extern __current_pid 84 80 __current_pid: 85 81 .long 0 86 82 ··· 108 104 #error Unsupported architecture 109 105 #endif 110 106 #if defined(__x86_64__) 111 - .globl getpid 112 - getpid = __getpid 107 + .globl _getpid 108 + .set _getpid, ___getpid 113 109 #endif 114 110
+1 -1
src/kernel/libsyscall/sys_x86-64/__getrlimit.S src/kernel/libsyscall/sys_x86-64/___getrlimit.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__getrlimit, getrlimit, 2, cerror_nocancel) 9 + __SYSCALL2(___getrlimit, getrlimit, 2, cerror_nocancel) 10 10 #endif 11 11
+3 -3
src/kernel/libsyscall/sys_x86-64/__getsgroups.S src/kernel/libsyscall/sys_x86-64/___getsgroups.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__getsgroups, getsgroups, 2, cerror_nocancel) 9 + __SYSCALL2(___getsgroups, getsgroups, 2, cerror_nocancel) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl getsgroups_np 14 - getsgroups_np = __getsgroups 13 + .globl _getsgroups_np 14 + .set _getsgroups_np, ___getsgroups 15 15 #endif 16 16
+3 -3
src/kernel/libsyscall/sys_x86-64/__getsockname.S src/kernel/libsyscall/sys_x86-64/___getsockname.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__getsockname, getsockname, 3, cerror_nocancel) 9 + __SYSCALL2(___getsockname, getsockname, 3, cerror_nocancel) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl getsockname 14 - getsockname = __getsockname 13 + .globl _getsockname 14 + .set _getsockname, ___getsockname 15 15 #endif 16 16
+3 -3
src/kernel/libsyscall/sys_x86-64/__gettid.S src/kernel/libsyscall/sys_x86-64/___gettid.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__gettid, gettid, 2, cerror_nocancel) 9 + __SYSCALL2(___gettid, gettid, 2, cerror_nocancel) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl pthread_getugid_np 14 - pthread_getugid_np = __gettid 13 + .globl _pthread_getugid_np 14 + .set _pthread_getugid_np, ___gettid 15 15 #endif 16 16
src/kernel/libsyscall/sys_x86-64/__gettimeofday.S src/kernel/libsyscall/sys_x86-64/___gettimeofday.S
+3 -3
src/kernel/libsyscall/sys_x86-64/__getwgroups.S src/kernel/libsyscall/sys_x86-64/___getwgroups.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__getwgroups, getwgroups, 2, cerror_nocancel) 9 + __SYSCALL2(___getwgroups, getwgroups, 2, cerror_nocancel) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl getwgroups_np 14 - getwgroups_np = __getwgroups 13 + .globl _getwgroups_np 14 + .set _getwgroups_np, ___getwgroups 15 15 #endif 16 16
+1 -1
src/kernel/libsyscall/sys_x86-64/__guarded_open_dprotected_np.S src/kernel/libsyscall/sys_x86-64/___guarded_open_dprotected_np.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__guarded_open_dprotected_np, guarded_open_dprotected_np, 7, cerror_nocancel) 9 + __SYSCALL2(___guarded_open_dprotected_np, guarded_open_dprotected_np, 7, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/__guarded_open_np.S src/kernel/libsyscall/sys_x86-64/___guarded_open_np.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__guarded_open_np, guarded_open_np, 5, cerror_nocancel) 9 + __SYSCALL2(___guarded_open_np, guarded_open_np, 5, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/__identitysvc.S src/kernel/libsyscall/sys_x86-64/___identitysvc.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__identitysvc, identitysvc, 2, cerror_nocancel) 9 + __SYSCALL2(___identitysvc, identitysvc, 2, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/__initgroups.S src/kernel/libsyscall/sys_x86-64/___initgroups.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__initgroups, initgroups, 3, cerror_nocancel) 9 + __SYSCALL2(___initgroups, initgroups, 3, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/__ioctl.S src/kernel/libsyscall/sys_x86-64/___ioctl.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__ioctl, ioctl, 3, cerror) 9 + __SYSCALL2(___ioctl, ioctl, 3, cerror) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/__iopolicysys.S src/kernel/libsyscall/sys_x86-64/___iopolicysys.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__iopolicysys, iopolicysys, 2, cerror_nocancel) 9 + __SYSCALL2(___iopolicysys, iopolicysys, 2, cerror_nocancel) 10 10 #endif 11 11
+2 -2
src/kernel/libsyscall/sys_x86-64/__kdebug_trace.S src/kernel/libsyscall/sys_x86-64/___kdebug_trace.S
··· 1 - #define __SYSCALL_32BIT_ARG_BYTES 24 1 + #define __SYSCALL_32BIT_ARG_BYTES 20 2 2 #include "SYS.h" 3 3 4 4 #ifndef SYS_kdebug_trace ··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__kdebug_trace, kdebug_trace, 6, cerror_nocancel) 9 + __SYSCALL2(___kdebug_trace, kdebug_trace, 5, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/__kill.S src/kernel/libsyscall/sys_x86-64/___kill.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__kill, kill, 3, cerror_nocancel) 9 + __SYSCALL2(___kill, kill, 3, cerror_nocancel) 10 10 #endif 11 11
+3 -3
src/kernel/libsyscall/sys_x86-64/__lchown.S src/kernel/libsyscall/sys_x86-64/___lchown.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__lchown, lchown, 3, cerror_nocancel) 9 + __SYSCALL2(___lchown, lchown, 3, cerror_nocancel) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl lchown 14 - lchown = __lchown 13 + .globl _lchown 14 + .set _lchown, ___lchown 15 15 #endif 16 16
+3 -3
src/kernel/libsyscall/sys_x86-64/__listen.S src/kernel/libsyscall/sys_x86-64/___listen.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__listen, listen, 2, cerror_nocancel) 9 + __SYSCALL2(___listen, listen, 2, cerror_nocancel) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl listen 14 - listen = __listen 13 + .globl _listen 14 + .set _listen, ___listen 15 15 #endif 16 16
+2 -6
src/kernel/libsyscall/sys_x86-64/__lseek.S src/kernel/libsyscall/sys_x86-64/___lseek.S
··· 29 29 30 30 #include "SYS.h" 31 31 32 - #ifdef DARLING 33 - # define ___lseek __lseek 34 - #endif 35 - 36 32 #if defined(__x86_64__) 37 33 38 34 __SYSCALL(___lseek, lseek, 3) ··· 45 41 #error Unsupported architecture 46 42 #endif 47 43 #if defined(__x86_64__) 48 - .globl lseek 49 - lseek = __lseek 44 + .globl _lseek 45 + .set _lseek, ___lseek 50 46 #endif 51 47
+1 -1
src/kernel/libsyscall/sys_x86-64/__lstat64_extended.S src/kernel/libsyscall/sys_x86-64/___lstat64_extended.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__lstat64_extended, lstat64_extended, 4, cerror_nocancel) 9 + __SYSCALL2(___lstat64_extended, lstat64_extended, 4, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/__lstat_extended.S src/kernel/libsyscall/sys_x86-64/___lstat_extended.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__lstat_extended, lstat_extended, 4, cerror_nocancel) 9 + __SYSCALL2(___lstat_extended, lstat_extended, 4, cerror_nocancel) 10 10 #endif 11 11
+3 -3
src/kernel/libsyscall/sys_x86-64/__mac_execve.S src/kernel/libsyscall/sys_x86-64/___mac_execve.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__mac_execve, __mac_execve, 4, cerror_nocancel) 9 + __SYSCALL2(___mac_execve, __mac_execve, 4, cerror_nocancel) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl __sandbox_me 14 - __sandbox_me = __mac_execve 13 + .globl ___sandbox_me 14 + .set ___sandbox_me, ___mac_execve 15 15 #endif 16 16
+1 -1
src/kernel/libsyscall/sys_x86-64/__mac_get_fd.S src/kernel/libsyscall/sys_x86-64/___mac_get_fd.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__mac_get_fd, __mac_get_fd, 2, cerror_nocancel) 9 + __SYSCALL2(___mac_get_fd, __mac_get_fd, 2, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/__mac_get_file.S src/kernel/libsyscall/sys_x86-64/___mac_get_file.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__mac_get_file, __mac_get_file, 2, cerror_nocancel) 9 + __SYSCALL2(___mac_get_file, __mac_get_file, 2, cerror_nocancel) 10 10 #endif 11 11
-11
src/kernel/libsyscall/sys_x86-64/__mac_get_lcid.S
··· 1 - #define __SYSCALL_32BIT_ARG_BYTES 8 2 - #include "SYS.h" 3 - 4 - #ifndef SYS___mac_get_lcid 5 - #error "SYS___mac_get_lcid not defined. The header files libsyscall is building against do not match syscalls.master." 6 - #endif 7 - 8 - #if defined(__x86_64__) 9 - __SYSCALL2(__mac_get_lcid, __mac_get_lcid, 2, cerror_nocancel) 10 - #endif 11 -
-11
src/kernel/libsyscall/sys_x86-64/__mac_get_lctx.S
··· 1 - #define __SYSCALL_32BIT_ARG_BYTES 4 2 - #include "SYS.h" 3 - 4 - #ifndef SYS___mac_get_lctx 5 - #error "SYS___mac_get_lctx not defined. The header files libsyscall is building against do not match syscalls.master." 6 - #endif 7 - 8 - #if defined(__x86_64__) 9 - __SYSCALL2(__mac_get_lctx, __mac_get_lctx, 1, cerror_nocancel) 10 - #endif 11 -
+1 -1
src/kernel/libsyscall/sys_x86-64/__mac_get_link.S src/kernel/libsyscall/sys_x86-64/___mac_get_link.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__mac_get_link, __mac_get_link, 2, cerror_nocancel) 9 + __SYSCALL2(___mac_get_link, __mac_get_link, 2, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/__mac_get_mount.S src/kernel/libsyscall/sys_x86-64/___mac_get_mount.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__mac_get_mount, __mac_get_mount, 2, cerror_nocancel) 9 + __SYSCALL2(___mac_get_mount, __mac_get_mount, 2, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/__mac_get_pid.S src/kernel/libsyscall/sys_x86-64/___mac_get_pid.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__mac_get_pid, __mac_get_pid, 2, cerror_nocancel) 9 + __SYSCALL2(___mac_get_pid, __mac_get_pid, 2, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/__mac_get_proc.S src/kernel/libsyscall/sys_x86-64/___mac_get_proc.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__mac_get_proc, __mac_get_proc, 1, cerror_nocancel) 9 + __SYSCALL2(___mac_get_proc, __mac_get_proc, 1, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/__mac_getfsstat.S src/kernel/libsyscall/sys_x86-64/___mac_getfsstat.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__mac_getfsstat, __mac_getfsstat, 5, cerror_nocancel) 9 + __SYSCALL2(___mac_getfsstat, __mac_getfsstat, 5, cerror_nocancel) 10 10 #endif 11 11
+3 -3
src/kernel/libsyscall/sys_x86-64/__mac_mount.S src/kernel/libsyscall/sys_x86-64/___mac_mount.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__mac_mount, __mac_mount, 5, cerror_nocancel) 9 + __SYSCALL2(___mac_mount, __mac_mount, 5, cerror_nocancel) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl __sandbox_mm 14 - __sandbox_mm = __mac_mount 13 + .globl ___sandbox_mm 14 + .set ___sandbox_mm, ___mac_mount 15 15 #endif 16 16
+1 -1
src/kernel/libsyscall/sys_x86-64/__mac_set_fd.S src/kernel/libsyscall/sys_x86-64/___mac_set_fd.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__mac_set_fd, __mac_set_fd, 2, cerror_nocancel) 9 + __SYSCALL2(___mac_set_fd, __mac_set_fd, 2, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/__mac_set_file.S src/kernel/libsyscall/sys_x86-64/___mac_set_file.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__mac_set_file, __mac_set_file, 2, cerror_nocancel) 9 + __SYSCALL2(___mac_set_file, __mac_set_file, 2, cerror_nocancel) 10 10 #endif 11 11
-11
src/kernel/libsyscall/sys_x86-64/__mac_set_lctx.S
··· 1 - #define __SYSCALL_32BIT_ARG_BYTES 4 2 - #include "SYS.h" 3 - 4 - #ifndef SYS___mac_set_lctx 5 - #error "SYS___mac_set_lctx not defined. The header files libsyscall is building against do not match syscalls.master." 6 - #endif 7 - 8 - #if defined(__x86_64__) 9 - __SYSCALL2(__mac_set_lctx, __mac_set_lctx, 1, cerror_nocancel) 10 - #endif 11 -
+1 -1
src/kernel/libsyscall/sys_x86-64/__mac_set_link.S src/kernel/libsyscall/sys_x86-64/___mac_set_link.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__mac_set_link, __mac_set_link, 2, cerror_nocancel) 9 + __SYSCALL2(___mac_set_link, __mac_set_link, 2, cerror_nocancel) 10 10 #endif 11 11
+3 -3
src/kernel/libsyscall/sys_x86-64/__mac_set_proc.S src/kernel/libsyscall/sys_x86-64/___mac_set_proc.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__mac_set_proc, __mac_set_proc, 1, cerror_nocancel) 9 + __SYSCALL2(___mac_set_proc, __mac_set_proc, 1, cerror_nocancel) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl __sandbox_msp 14 - __sandbox_msp = __mac_set_proc 13 + .globl ___sandbox_msp 14 + .set ___sandbox_msp, ___mac_set_proc 15 15 #endif 16 16
+3 -3
src/kernel/libsyscall/sys_x86-64/__mac_syscall.S src/kernel/libsyscall/sys_x86-64/___mac_syscall.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__mac_syscall, __mac_syscall, 3, cerror_nocancel) 9 + __SYSCALL2(___mac_syscall, __mac_syscall, 3, cerror_nocancel) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl __sandbox_ms 14 - __sandbox_ms = __mac_syscall 13 + .globl ___sandbox_ms 14 + .set ___sandbox_ms, ___mac_syscall 15 15 #endif 16 16
+1 -1
src/kernel/libsyscall/sys_x86-64/__mkdir_extended.S src/kernel/libsyscall/sys_x86-64/___mkdir_extended.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__mkdir_extended, mkdir_extended, 5, cerror_nocancel) 9 + __SYSCALL2(___mkdir_extended, mkdir_extended, 5, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/__mkfifo_extended.S src/kernel/libsyscall/sys_x86-64/___mkfifo_extended.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__mkfifo_extended, mkfifo_extended, 5, cerror_nocancel) 9 + __SYSCALL2(___mkfifo_extended, mkfifo_extended, 5, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/__mmap.S src/kernel/libsyscall/sys_x86-64/___mmap.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__mmap, mmap, 6, cerror_nocancel) 9 + __SYSCALL2(___mmap, mmap, 6, cerror_nocancel) 10 10 #endif 11 11
+3 -3
src/kernel/libsyscall/sys_x86-64/__mprotect.S src/kernel/libsyscall/sys_x86-64/___mprotect.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__mprotect, mprotect, 3, cerror_nocancel) 9 + __SYSCALL2(___mprotect, mprotect, 3, cerror_nocancel) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl mprotect 14 - mprotect = __mprotect 13 + .globl _mprotect 14 + .set _mprotect, ___mprotect 15 15 #endif 16 16
+3 -3
src/kernel/libsyscall/sys_x86-64/__msgctl.S src/kernel/libsyscall/sys_x86-64/___msgctl.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__msgctl, msgctl, 3, cerror_nocancel) 9 + __SYSCALL2(___msgctl, msgctl, 3, cerror_nocancel) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl msgctl 14 - msgctl = __msgctl 13 + .globl _msgctl 14 + .set _msgctl, ___msgctl 15 15 #endif 16 16
+3 -3
src/kernel/libsyscall/sys_x86-64/__msgrcv_nocancel.S src/kernel/libsyscall/sys_x86-64/___msgrcv_nocancel.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__msgrcv_nocancel, msgrcv_nocancel, 5, cerror_nocancel) 9 + __SYSCALL2(___msgrcv_nocancel, msgrcv_nocancel, 5, cerror_nocancel) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl msgrcv$NOCANCEL 14 - msgrcv$NOCANCEL = __msgrcv_nocancel 13 + .globl _msgrcv$NOCANCEL 14 + .set _msgrcv$NOCANCEL, ___msgrcv_nocancel 15 15 #endif 16 16
+3 -3
src/kernel/libsyscall/sys_x86-64/__msgsnd_nocancel.S src/kernel/libsyscall/sys_x86-64/___msgsnd_nocancel.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__msgsnd_nocancel, msgsnd_nocancel, 4, cerror_nocancel) 9 + __SYSCALL2(___msgsnd_nocancel, msgsnd_nocancel, 4, cerror_nocancel) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl msgsnd$NOCANCEL 14 - msgsnd$NOCANCEL = __msgsnd_nocancel 13 + .globl _msgsnd$NOCANCEL 14 + .set _msgsnd$NOCANCEL, ___msgsnd_nocancel 15 15 #endif 16 16
+3 -3
src/kernel/libsyscall/sys_x86-64/__msgsys.S src/kernel/libsyscall/sys_x86-64/___msgsys.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__msgsys, msgsys, 5, cerror_nocancel) 9 + __SYSCALL2(___msgsys, msgsys, 5, cerror_nocancel) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl msgsys 14 - msgsys = __msgsys 13 + .globl _msgsys 14 + .set _msgsys, ___msgsys 15 15 #endif 16 16
+3 -3
src/kernel/libsyscall/sys_x86-64/__msync.S src/kernel/libsyscall/sys_x86-64/___msync.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__msync, msync, 3, cerror) 9 + __SYSCALL2(___msync, msync, 3, cerror) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl msync 14 - msync = __msync 13 + .globl _msync 14 + .set _msync, ___msync 15 15 #endif 16 16
+3 -3
src/kernel/libsyscall/sys_x86-64/__msync_nocancel.S src/kernel/libsyscall/sys_x86-64/___msync_nocancel.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__msync_nocancel, msync_nocancel, 3, cerror_nocancel) 9 + __SYSCALL2(___msync_nocancel, msync_nocancel, 3, cerror_nocancel) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl msync$NOCANCEL 14 - msync$NOCANCEL = __msync_nocancel 13 + .globl _msync$NOCANCEL 14 + .set _msync$NOCANCEL, ___msync_nocancel 15 15 #endif 16 16
+1 -1
src/kernel/libsyscall/sys_x86-64/__munmap.S src/kernel/libsyscall/sys_x86-64/___munmap.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__munmap, munmap, 2, cerror_nocancel) 9 + __SYSCALL2(___munmap, munmap, 2, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/__old_semwait_signal.S src/kernel/libsyscall/sys_x86-64/___old_semwait_signal.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__old_semwait_signal, __old_semwait_signal, 5, cerror_nocancel) 9 + __SYSCALL2(___old_semwait_signal, __old_semwait_signal, 5, cerror_nocancel) 10 10 #endif 11 11
+3 -3
src/kernel/libsyscall/sys_x86-64/__open.S src/kernel/libsyscall/sys_x86-64/___open.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__open, open, 3, cerror) 9 + __SYSCALL2(___open, open, 3, cerror) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl open 14 - open = __open 13 + .globl _open 14 + .set _open, ___open 15 15 #endif 16 16
+1 -1
src/kernel/libsyscall/sys_x86-64/__open_dprotected_np.S src/kernel/libsyscall/sys_x86-64/___open_dprotected_np.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__open_dprotected_np, open_dprotected_np, 5, cerror_nocancel) 9 + __SYSCALL2(___open_dprotected_np, open_dprotected_np, 5, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/__open_extended.S src/kernel/libsyscall/sys_x86-64/___open_extended.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__open_extended, open_extended, 6, cerror_nocancel) 9 + __SYSCALL2(___open_extended, open_extended, 6, cerror_nocancel) 10 10 #endif 11 11
+3 -3
src/kernel/libsyscall/sys_x86-64/__open_nocancel.S src/kernel/libsyscall/sys_x86-64/___open_nocancel.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__open_nocancel, open_nocancel, 3, cerror_nocancel) 9 + __SYSCALL2(___open_nocancel, open_nocancel, 3, cerror_nocancel) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl open$NOCANCEL 14 - open$NOCANCEL = __open_nocancel 13 + .globl _open$NOCANCEL 14 + .set _open$NOCANCEL, ___open_nocancel 15 15 #endif 16 16
+3 -3
src/kernel/libsyscall/sys_x86-64/__openat.S src/kernel/libsyscall/sys_x86-64/___openat.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__openat, openat, 4, cerror) 9 + __SYSCALL2(___openat, openat, 4, cerror) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl openat 14 - openat = __openat 13 + .globl _openat 14 + .set _openat, ___openat 15 15 #endif 16 16
+3 -3
src/kernel/libsyscall/sys_x86-64/__openat_nocancel.S src/kernel/libsyscall/sys_x86-64/___openat_nocancel.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__openat_nocancel, openat_nocancel, 4, cerror_nocancel) 9 + __SYSCALL2(___openat_nocancel, openat_nocancel, 4, cerror_nocancel) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl openat$NOCANCEL 14 - openat$NOCANCEL = __openat_nocancel 13 + .globl _openat$NOCANCEL 14 + .set _openat$NOCANCEL, ___openat_nocancel 15 15 #endif 16 16
+13 -8
src/kernel/libsyscall/sys_x86-64/__pipe.S src/kernel/libsyscall/sys_x86-64/___pipe.S
··· 30 30 31 31 #include "SYS.h" 32 32 33 - #ifdef DARLING 34 - # define ___pipe __pipe 35 - #endif 36 - 37 33 #if defined(__i386__) 38 34 39 - __SYSCALL2(___pipe, pipe, 1, cerror) 35 + PSEUDO_INT(___pipe, pipe, 0) 36 + movl 4(%esp),%ecx 37 + movl %eax,(%ecx) 38 + movl %edx,4(%ecx) 39 + xorl %eax,%eax 40 + ret 40 41 41 42 #elif defined(__x86_64__) 42 43 43 - __SYSCALL2(___pipe, pipe, 1, cerror) 44 + PSEUDO(___pipe, pipe, 0, cerror_nocancel) 45 + movl %eax, (%rdi) 46 + movl %edx, 4(%rdi) 47 + xorl %eax, %eax 48 + ret 44 49 45 50 #else 46 51 #error Unsupported architecture 47 52 #endif 48 53 #if defined(__x86_64__) 49 - .globl pipe 50 - pipe = __pipe 54 + .globl _pipe 55 + .set _pipe, ___pipe 51 56 #endif 52 57
+3 -3
src/kernel/libsyscall/sys_x86-64/__poll_nocancel.S src/kernel/libsyscall/sys_x86-64/___poll_nocancel.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__poll_nocancel, poll_nocancel, 3, cerror_nocancel) 9 + __SYSCALL2(___poll_nocancel, poll_nocancel, 3, cerror_nocancel) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl poll$NOCANCEL 14 - poll$NOCANCEL = __poll_nocancel 13 + .globl _poll$NOCANCEL 14 + .set _poll$NOCANCEL, ___poll_nocancel 15 15 #endif 16 16
+1 -1
src/kernel/libsyscall/sys_x86-64/__posix_spawn.S src/kernel/libsyscall/sys_x86-64/___posix_spawn.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__posix_spawn, posix_spawn, 5, cerror) 9 + __SYSCALL2(___posix_spawn, posix_spawn, 5, cerror) 10 10 #endif 11 11
+3 -3
src/kernel/libsyscall/sys_x86-64/__pread_nocancel.S src/kernel/libsyscall/sys_x86-64/___pread_nocancel.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__pread_nocancel, pread_nocancel, 4, cerror_nocancel) 9 + __SYSCALL2(___pread_nocancel, pread_nocancel, 4, cerror_nocancel) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl pread$NOCANCEL 14 - pread$NOCANCEL = __pread_nocancel 13 + .globl _pread$NOCANCEL 14 + .set _pread$NOCANCEL, ___pread_nocancel 15 15 #endif 16 16
+1 -1
src/kernel/libsyscall/sys_x86-64/__proc_info.S src/kernel/libsyscall/sys_x86-64/___proc_info.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__proc_info, proc_info, 6, cerror_nocancel) 9 + __SYSCALL2(___proc_info, proc_info, 6, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/__process_policy.S src/kernel/libsyscall/sys_x86-64/___process_policy.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__process_policy, process_policy, 7, cerror_nocancel) 9 + __SYSCALL2(___process_policy, process_policy, 7, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/__psynch_cvbroad.S src/kernel/libsyscall/sys_x86-64/___psynch_cvbroad.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__psynch_cvbroad, psynch_cvbroad, 7, cerror_nocancel) 9 + __SYSCALL2(___psynch_cvbroad, psynch_cvbroad, 7, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/__psynch_cvclrprepost.S src/kernel/libsyscall/sys_x86-64/___psynch_cvclrprepost.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__psynch_cvclrprepost, psynch_cvclrprepost, 7, cerror_nocancel) 9 + __SYSCALL2(___psynch_cvclrprepost, psynch_cvclrprepost, 7, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/__psynch_cvsignal.S src/kernel/libsyscall/sys_x86-64/___psynch_cvsignal.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__psynch_cvsignal, psynch_cvsignal, 8, cerror_nocancel) 9 + __SYSCALL2(___psynch_cvsignal, psynch_cvsignal, 8, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/__psynch_cvwait.S src/kernel/libsyscall/sys_x86-64/___psynch_cvwait.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__psynch_cvwait, psynch_cvwait, 8, cerror_nocancel) 9 + __SYSCALL2(___psynch_cvwait, psynch_cvwait, 8, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/__psynch_mutexdrop.S src/kernel/libsyscall/sys_x86-64/___psynch_mutexdrop.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__psynch_mutexdrop, psynch_mutexdrop, 5, cerror_nocancel) 9 + __SYSCALL2(___psynch_mutexdrop, psynch_mutexdrop, 5, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/__psynch_mutexwait.S src/kernel/libsyscall/sys_x86-64/___psynch_mutexwait.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__psynch_mutexwait, psynch_mutexwait, 5, cerror_nocancel) 9 + __SYSCALL2(___psynch_mutexwait, psynch_mutexwait, 5, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/__psynch_rw_downgrade.S src/kernel/libsyscall/sys_x86-64/___psynch_rw_downgrade.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__psynch_rw_downgrade, psynch_rw_downgrade, 5, cerror_nocancel) 9 + __SYSCALL2(___psynch_rw_downgrade, psynch_rw_downgrade, 5, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/__psynch_rw_longrdlock.S src/kernel/libsyscall/sys_x86-64/___psynch_rw_longrdlock.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__psynch_rw_longrdlock, psynch_rw_longrdlock, 5, cerror_nocancel) 9 + __SYSCALL2(___psynch_rw_longrdlock, psynch_rw_longrdlock, 5, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/__psynch_rw_rdlock.S src/kernel/libsyscall/sys_x86-64/___psynch_rw_rdlock.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__psynch_rw_rdlock, psynch_rw_rdlock, 5, cerror_nocancel) 9 + __SYSCALL2(___psynch_rw_rdlock, psynch_rw_rdlock, 5, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/__psynch_rw_unlock.S src/kernel/libsyscall/sys_x86-64/___psynch_rw_unlock.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__psynch_rw_unlock, psynch_rw_unlock, 5, cerror_nocancel) 9 + __SYSCALL2(___psynch_rw_unlock, psynch_rw_unlock, 5, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/__psynch_rw_unlock2.S src/kernel/libsyscall/sys_x86-64/___psynch_rw_unlock2.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__psynch_rw_unlock2, psynch_rw_unlock2, 5, cerror_nocancel) 9 + __SYSCALL2(___psynch_rw_unlock2, psynch_rw_unlock2, 5, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/__psynch_rw_upgrade.S src/kernel/libsyscall/sys_x86-64/___psynch_rw_upgrade.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__psynch_rw_upgrade, psynch_rw_upgrade, 5, cerror_nocancel) 9 + __SYSCALL2(___psynch_rw_upgrade, psynch_rw_upgrade, 5, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/__psynch_rw_wrlock.S src/kernel/libsyscall/sys_x86-64/___psynch_rw_wrlock.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__psynch_rw_wrlock, psynch_rw_wrlock, 5, cerror_nocancel) 9 + __SYSCALL2(___psynch_rw_wrlock, psynch_rw_wrlock, 5, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/__psynch_rw_yieldwrlock.S src/kernel/libsyscall/sys_x86-64/___psynch_rw_yieldwrlock.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__psynch_rw_yieldwrlock, psynch_rw_yieldwrlock, 5, cerror_nocancel) 9 + __SYSCALL2(___psynch_rw_yieldwrlock, psynch_rw_yieldwrlock, 5, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/__pthread_canceled.S src/kernel/libsyscall/sys_x86-64/___pthread_canceled.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__pthread_canceled, __pthread_canceled, 1, cerror_nocancel) 9 + __SYSCALL2(___pthread_canceled, __pthread_canceled, 1, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/__pthread_chdir.S src/kernel/libsyscall/sys_x86-64/___pthread_chdir.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__pthread_chdir, __pthread_chdir, 1, cerror_nocancel) 9 + __SYSCALL2(___pthread_chdir, __pthread_chdir, 1, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/__pthread_fchdir.S src/kernel/libsyscall/sys_x86-64/___pthread_fchdir.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__pthread_fchdir, __pthread_fchdir, 1, cerror_nocancel) 9 + __SYSCALL2(___pthread_fchdir, __pthread_fchdir, 1, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/__pthread_kill.S src/kernel/libsyscall/sys_x86-64/___pthread_kill.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__pthread_kill, __pthread_kill, 2, cerror_nocancel) 9 + __SYSCALL2(___pthread_kill, __pthread_kill, 2, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/__pthread_markcancel.S src/kernel/libsyscall/sys_x86-64/___pthread_markcancel.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__pthread_markcancel, __pthread_markcancel, 1, cerror_nocancel) 9 + __SYSCALL2(___pthread_markcancel, __pthread_markcancel, 1, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/__pthread_sigmask.S src/kernel/libsyscall/sys_x86-64/___pthread_sigmask.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__pthread_sigmask, __pthread_sigmask, 3, cerror_nocancel) 9 + __SYSCALL2(___pthread_sigmask, __pthread_sigmask, 3, cerror_nocancel) 10 10 #endif 11 11
+2 -7
src/kernel/libsyscall/sys_x86-64/__ptrace.S src/kernel/libsyscall/sys_x86-64/___ptrace.S
··· 30 30 31 31 #include "SYS.h" 32 32 33 - #ifdef DARLING 34 - # define ___ptrace __ptrace 35 - # define _errno darwin_errno 36 - #endif 37 - 38 33 #if defined(__i386__) 39 34 40 35 .globl _errno ··· 60 55 #error Unsupported architecture 61 56 #endif 62 57 #if defined(__x86_64__) 63 - .globl ptrace 64 - ptrace = __ptrace 58 + .globl _ptrace 59 + .set _ptrace, ___ptrace 65 60 #endif 66 61
+3 -3
src/kernel/libsyscall/sys_x86-64/__pwrite_nocancel.S src/kernel/libsyscall/sys_x86-64/___pwrite_nocancel.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__pwrite_nocancel, pwrite_nocancel, 4, cerror_nocancel) 9 + __SYSCALL2(___pwrite_nocancel, pwrite_nocancel, 4, cerror_nocancel) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl pwrite$NOCANCEL 14 - pwrite$NOCANCEL = __pwrite_nocancel 13 + .globl _pwrite$NOCANCEL 14 + .set _pwrite$NOCANCEL, ___pwrite_nocancel 15 15 #endif 16 16
+3 -3
src/kernel/libsyscall/sys_x86-64/__read_nocancel.S src/kernel/libsyscall/sys_x86-64/___read_nocancel.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__read_nocancel, read_nocancel, 3, cerror_nocancel) 9 + __SYSCALL2(___read_nocancel, read_nocancel, 3, cerror_nocancel) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl read$NOCANCEL 14 - read$NOCANCEL = __read_nocancel 13 + .globl _read$NOCANCEL 14 + .set _read$NOCANCEL, ___read_nocancel 15 15 #endif 16 16
+3 -3
src/kernel/libsyscall/sys_x86-64/__readv_nocancel.S src/kernel/libsyscall/sys_x86-64/___readv_nocancel.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__readv_nocancel, readv_nocancel, 3, cerror_nocancel) 9 + __SYSCALL2(___readv_nocancel, readv_nocancel, 3, cerror_nocancel) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl readv$NOCANCEL 14 - readv$NOCANCEL = __readv_nocancel 13 + .globl _readv$NOCANCEL 14 + .set _readv$NOCANCEL, ___readv_nocancel 15 15 #endif 16 16
+3 -3
src/kernel/libsyscall/sys_x86-64/__recvfrom.S src/kernel/libsyscall/sys_x86-64/___recvfrom.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__recvfrom, recvfrom, 6, cerror) 9 + __SYSCALL2(___recvfrom, recvfrom, 6, cerror) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl recvfrom 14 - recvfrom = __recvfrom 13 + .globl _recvfrom 14 + .set _recvfrom, ___recvfrom 15 15 #endif 16 16
+3 -3
src/kernel/libsyscall/sys_x86-64/__recvfrom_nocancel.S src/kernel/libsyscall/sys_x86-64/___recvfrom_nocancel.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__recvfrom_nocancel, recvfrom_nocancel, 6, cerror_nocancel) 9 + __SYSCALL2(___recvfrom_nocancel, recvfrom_nocancel, 6, cerror_nocancel) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl recvfrom$NOCANCEL 14 - recvfrom$NOCANCEL = __recvfrom_nocancel 13 + .globl _recvfrom$NOCANCEL 14 + .set _recvfrom$NOCANCEL, ___recvfrom_nocancel 15 15 #endif 16 16
+3 -3
src/kernel/libsyscall/sys_x86-64/__recvmsg.S src/kernel/libsyscall/sys_x86-64/___recvmsg.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__recvmsg, recvmsg, 3, cerror) 9 + __SYSCALL2(___recvmsg, recvmsg, 3, cerror) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl recvmsg 14 - recvmsg = __recvmsg 13 + .globl _recvmsg 14 + .set _recvmsg, ___recvmsg 15 15 #endif 16 16
+3 -3
src/kernel/libsyscall/sys_x86-64/__recvmsg_nocancel.S src/kernel/libsyscall/sys_x86-64/___recvmsg_nocancel.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__recvmsg_nocancel, recvmsg_nocancel, 3, cerror_nocancel) 9 + __SYSCALL2(___recvmsg_nocancel, recvmsg_nocancel, 3, cerror_nocancel) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl recvmsg$NOCANCEL 14 - recvmsg$NOCANCEL = __recvmsg_nocancel 13 + .globl _recvmsg$NOCANCEL 14 + .set _recvmsg$NOCANCEL, ___recvmsg_nocancel 15 15 #endif 16 16
+1 -1
src/kernel/libsyscall/sys_x86-64/__rename.S src/kernel/libsyscall/sys_x86-64/___rename.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__rename, rename, 2, cerror) 9 + __SYSCALL2(___rename, rename, 2, cerror) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/__rename_ext.S src/kernel/libsyscall/sys_x86-64/___rename_ext.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__rename_ext, rename_ext, 3, cerror) 9 + __SYSCALL2(___rename_ext, rename_ext, 3, cerror) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/__renameat.S src/kernel/libsyscall/sys_x86-64/___renameat.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__renameat, renameat, 4, cerror) 9 + __SYSCALL2(___renameat, renameat, 4, cerror) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/__rmdir.S src/kernel/libsyscall/sys_x86-64/___rmdir.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__rmdir, rmdir, 1, cerror_nocancel) 9 + __SYSCALL2(___rmdir, rmdir, 1, cerror_nocancel) 10 10 #endif 11 11
+3 -3
src/kernel/libsyscall/sys_x86-64/__select.S src/kernel/libsyscall/sys_x86-64/___select.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__select, select, 5, cerror) 9 + __SYSCALL2(___select, select, 5, cerror) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl select$DARWIN_EXTSN 14 - select$DARWIN_EXTSN = __select 13 + .globl _select$DARWIN_EXTSN 14 + .set _select$DARWIN_EXTSN, ___select 15 15 #endif 16 16
+3 -3
src/kernel/libsyscall/sys_x86-64/__select_nocancel.S src/kernel/libsyscall/sys_x86-64/___select_nocancel.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__select_nocancel, select_nocancel, 5, cerror_nocancel) 9 + __SYSCALL2(___select_nocancel, select_nocancel, 5, cerror_nocancel) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl select$DARWIN_EXTSN$NOCANCEL 14 - select$DARWIN_EXTSN$NOCANCEL = __select_nocancel 13 + .globl _select$DARWIN_EXTSN$NOCANCEL 14 + .set _select$DARWIN_EXTSN$NOCANCEL, ___select_nocancel 15 15 #endif 16 16
+3 -3
src/kernel/libsyscall/sys_x86-64/__sem_open.S src/kernel/libsyscall/sys_x86-64/___sem_open.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__sem_open, sem_open, 4, cerror_nocancel) 9 + __SYSCALL2(___sem_open, sem_open, 4, cerror_nocancel) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl sem_open 14 - sem_open = __sem_open 13 + .globl _sem_open 14 + .set _sem_open, ___sem_open 15 15 #endif 16 16
+3 -3
src/kernel/libsyscall/sys_x86-64/__sem_wait_nocancel.S src/kernel/libsyscall/sys_x86-64/___sem_wait_nocancel.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__sem_wait_nocancel, sem_wait_nocancel, 1, cerror_nocancel) 9 + __SYSCALL2(___sem_wait_nocancel, sem_wait_nocancel, 1, cerror_nocancel) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl sem_wait$NOCANCEL 14 - sem_wait$NOCANCEL = __sem_wait_nocancel 13 + .globl _sem_wait$NOCANCEL 14 + .set _sem_wait$NOCANCEL, ___sem_wait_nocancel 15 15 #endif 16 16
+3 -3
src/kernel/libsyscall/sys_x86-64/__semctl.S src/kernel/libsyscall/sys_x86-64/___semctl.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__semctl, semctl, 4, cerror_nocancel) 9 + __SYSCALL2(___semctl, semctl, 4, cerror_nocancel) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl semctl 14 - semctl = __semctl 13 + .globl _semctl 14 + .set _semctl, ___semctl 15 15 #endif 16 16
+3 -3
src/kernel/libsyscall/sys_x86-64/__semsys.S src/kernel/libsyscall/sys_x86-64/___semsys.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__semsys, semsys, 5, cerror_nocancel) 9 + __SYSCALL2(___semsys, semsys, 5, cerror_nocancel) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl semsys 14 - semsys = __semsys 13 + .globl _semsys 14 + .set _semsys, ___semsys 15 15 #endif 16 16
+1 -1
src/kernel/libsyscall/sys_x86-64/__semwait_signal.S src/kernel/libsyscall/sys_x86-64/___semwait_signal.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__semwait_signal, __semwait_signal, 6, cerror) 9 + __SYSCALL2(___semwait_signal, __semwait_signal, 6, cerror) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/__semwait_signal_nocancel.S src/kernel/libsyscall/sys_x86-64/___semwait_signal_nocancel.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__semwait_signal_nocancel, __semwait_signal_nocancel, 6, cerror_nocancel) 9 + __SYSCALL2(___semwait_signal_nocancel, __semwait_signal_nocancel, 6, cerror_nocancel) 10 10 #endif 11 11
+3 -3
src/kernel/libsyscall/sys_x86-64/__sendmsg.S src/kernel/libsyscall/sys_x86-64/___sendmsg.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__sendmsg, sendmsg, 3, cerror) 9 + __SYSCALL2(___sendmsg, sendmsg, 3, cerror) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl sendmsg 14 - sendmsg = __sendmsg 13 + .globl _sendmsg 14 + .set _sendmsg, ___sendmsg 15 15 #endif 16 16
+3 -3
src/kernel/libsyscall/sys_x86-64/__sendmsg_nocancel.S src/kernel/libsyscall/sys_x86-64/___sendmsg_nocancel.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__sendmsg_nocancel, sendmsg_nocancel, 3, cerror_nocancel) 9 + __SYSCALL2(___sendmsg_nocancel, sendmsg_nocancel, 3, cerror_nocancel) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl sendmsg$NOCANCEL 14 - sendmsg$NOCANCEL = __sendmsg_nocancel 13 + .globl _sendmsg$NOCANCEL 14 + .set _sendmsg$NOCANCEL, ___sendmsg_nocancel 15 15 #endif 16 16
+3 -3
src/kernel/libsyscall/sys_x86-64/__sendto.S src/kernel/libsyscall/sys_x86-64/___sendto.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__sendto, sendto, 6, cerror) 9 + __SYSCALL2(___sendto, sendto, 6, cerror) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl sendto 14 - sendto = __sendto 13 + .globl _sendto 14 + .set _sendto, ___sendto 15 15 #endif 16 16
+3 -3
src/kernel/libsyscall/sys_x86-64/__sendto_nocancel.S src/kernel/libsyscall/sys_x86-64/___sendto_nocancel.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__sendto_nocancel, sendto_nocancel, 6, cerror_nocancel) 9 + __SYSCALL2(___sendto_nocancel, sendto_nocancel, 6, cerror_nocancel) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl sendto$NOCANCEL 14 - sendto$NOCANCEL = __sendto_nocancel 13 + .globl _sendto$NOCANCEL 14 + .set _sendto$NOCANCEL, ___sendto_nocancel 15 15 #endif 16 16
+3 -3
src/kernel/libsyscall/sys_x86-64/__setattrlist.S src/kernel/libsyscall/sys_x86-64/___setattrlist.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__setattrlist, setattrlist, 5, cerror_nocancel) 9 + __SYSCALL2(___setattrlist, setattrlist, 5, cerror_nocancel) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl setattrlist 14 - setattrlist = __setattrlist 13 + .globl _setattrlist 14 + .set _setattrlist, ___setattrlist 15 15 #endif 16 16
-11
src/kernel/libsyscall/sys_x86-64/__setlcid.S
··· 1 - #define __SYSCALL_32BIT_ARG_BYTES 8 2 - #include "SYS.h" 3 - 4 - #ifndef SYS_setlcid 5 - #error "SYS_setlcid not defined. The header files libsyscall is building against do not match syscalls.master." 6 - #endif 7 - 8 - #if defined(__x86_64__) 9 - __SYSCALL2(__setlcid, setlcid, 2, cerror_nocancel) 10 - #endif 11 -
+1 -1
src/kernel/libsyscall/sys_x86-64/__setlogin.S src/kernel/libsyscall/sys_x86-64/___setlogin.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__setlogin, setlogin, 1, cerror_nocancel) 9 + __SYSCALL2(___setlogin, setlogin, 1, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/__setpriority.S src/kernel/libsyscall/sys_x86-64/___setpriority.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__setpriority, setpriority, 3, cerror_nocancel) 9 + __SYSCALL2(___setpriority, setpriority, 3, cerror_nocancel) 10 10 #endif 11 11
+3 -3
src/kernel/libsyscall/sys_x86-64/__setregid.S src/kernel/libsyscall/sys_x86-64/___setregid.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__setregid, setregid, 2, cerror_nocancel) 9 + __SYSCALL2(___setregid, setregid, 2, cerror_nocancel) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl setregid 14 - setregid = __setregid 13 + .globl _setregid 14 + .set _setregid, ___setregid 15 15 #endif 16 16
+3 -3
src/kernel/libsyscall/sys_x86-64/__setreuid.S src/kernel/libsyscall/sys_x86-64/___setreuid.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__setreuid, setreuid, 2, cerror_nocancel) 9 + __SYSCALL2(___setreuid, setreuid, 2, cerror_nocancel) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl setreuid 14 - setreuid = __setreuid 13 + .globl _setreuid 14 + .set _setreuid, ___setreuid 15 15 #endif 16 16
+1 -1
src/kernel/libsyscall/sys_x86-64/__setrlimit.S src/kernel/libsyscall/sys_x86-64/___setrlimit.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__setrlimit, setrlimit, 2, cerror_nocancel) 9 + __SYSCALL2(___setrlimit, setrlimit, 2, cerror_nocancel) 10 10 #endif 11 11
+3 -3
src/kernel/libsyscall/sys_x86-64/__setsgroups.S src/kernel/libsyscall/sys_x86-64/___setsgroups.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__setsgroups, setsgroups, 2, cerror_nocancel) 9 + __SYSCALL2(___setsgroups, setsgroups, 2, cerror_nocancel) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl setsgroups_np 14 - setsgroups_np = __setsgroups 13 + .globl _setsgroups_np 14 + .set _setsgroups_np, ___setsgroups 15 15 #endif 16 16
+3 -3
src/kernel/libsyscall/sys_x86-64/__settid.S src/kernel/libsyscall/sys_x86-64/___settid.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__settid, settid, 2, cerror_nocancel) 9 + __SYSCALL2(___settid, settid, 2, cerror_nocancel) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl pthread_setugid_np 14 - pthread_setugid_np = __settid 13 + .globl _pthread_setugid_np 14 + .set _pthread_setugid_np, ___settid 15 15 #endif 16 16
+1 -1
src/kernel/libsyscall/sys_x86-64/__settid_with_pid.S src/kernel/libsyscall/sys_x86-64/___settid_with_pid.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__settid_with_pid, settid_with_pid, 2, cerror_nocancel) 9 + __SYSCALL2(___settid_with_pid, settid_with_pid, 2, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/__settimeofday.S src/kernel/libsyscall/sys_x86-64/___settimeofday.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__settimeofday, settimeofday, 2, cerror_nocancel) 9 + __SYSCALL2(___settimeofday, settimeofday, 2, cerror_nocancel) 10 10 #endif 11 11
+3 -3
src/kernel/libsyscall/sys_x86-64/__setwgroups.S src/kernel/libsyscall/sys_x86-64/___setwgroups.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__setwgroups, setwgroups, 2, cerror_nocancel) 9 + __SYSCALL2(___setwgroups, setwgroups, 2, cerror_nocancel) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl setwgroups_np 14 - setwgroups_np = __setwgroups 13 + .globl _setwgroups_np 14 + .set _setwgroups_np, ___setwgroups 15 15 #endif 16 16
+1 -1
src/kernel/libsyscall/sys_x86-64/__sfi_ctl.S src/kernel/libsyscall/sys_x86-64/___sfi_ctl.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__sfi_ctl, sfi_ctl, 4, cerror_nocancel) 9 + __SYSCALL2(___sfi_ctl, sfi_ctl, 4, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/__sfi_pidctl.S src/kernel/libsyscall/sys_x86-64/___sfi_pidctl.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__sfi_pidctl, sfi_pidctl, 4, cerror_nocancel) 9 + __SYSCALL2(___sfi_pidctl, sfi_pidctl, 4, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/__shared_region_check_np.S src/kernel/libsyscall/sys_x86-64/___shared_region_check_np.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__shared_region_check_np, shared_region_check_np, 1, cerror_nocancel) 9 + __SYSCALL2(___shared_region_check_np, shared_region_check_np, 1, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/__shared_region_map_and_slide_np.S src/kernel/libsyscall/sys_x86-64/___shared_region_map_and_slide_np.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__shared_region_map_and_slide_np, shared_region_map_and_slide_np, 6, cerror_nocancel) 9 + __SYSCALL2(___shared_region_map_and_slide_np, shared_region_map_and_slide_np, 6, cerror_nocancel) 10 10 #endif 11 11
+3 -3
src/kernel/libsyscall/sys_x86-64/__shm_open.S src/kernel/libsyscall/sys_x86-64/___shm_open.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__shm_open, shm_open, 3, cerror_nocancel) 9 + __SYSCALL2(___shm_open, shm_open, 3, cerror_nocancel) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl shm_open 14 - shm_open = __shm_open 13 + .globl _shm_open 14 + .set _shm_open, ___shm_open 15 15 #endif 16 16
+3 -3
src/kernel/libsyscall/sys_x86-64/__shmctl.S src/kernel/libsyscall/sys_x86-64/___shmctl.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__shmctl, shmctl, 3, cerror_nocancel) 9 + __SYSCALL2(___shmctl, shmctl, 3, cerror_nocancel) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl shmctl 14 - shmctl = __shmctl 13 + .globl _shmctl 14 + .set _shmctl, ___shmctl 15 15 #endif 16 16
+3 -3
src/kernel/libsyscall/sys_x86-64/__shmsys.S src/kernel/libsyscall/sys_x86-64/___shmsys.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__shmsys, shmsys, 4, cerror_nocancel) 9 + __SYSCALL2(___shmsys, shmsys, 4, cerror_nocancel) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl shmsys 14 - shmsys = __shmsys 13 + .globl _shmsys 14 + .set _shmsys, ___shmsys 15 15 #endif 16 16
+1 -1
src/kernel/libsyscall/sys_x86-64/__sigaction.S src/kernel/libsyscall/sys_x86-64/___sigaction.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__sigaction, sigaction, 3, cerror_nocancel) 9 + __SYSCALL2(___sigaction, sigaction, 3, cerror_nocancel) 10 10 #endif 11 11
-4
src/kernel/libsyscall/sys_x86-64/__sigaltstack.S src/kernel/libsyscall/sys_x86-64/___sigaltstack.S
··· 29 29 30 30 #include "SYS.h" 31 31 32 - #ifdef DARLING 33 - # define ___sigaltstack __sigaltstack 34 - #endif 35 - 36 32 #if defined(__x86_64__) 37 33 38 34 __SYSCALL(___sigaltstack, sigaltstack, 3)
-4
src/kernel/libsyscall/sys_x86-64/__sigreturn.S src/kernel/libsyscall/sys_x86-64/___sigreturn.S
··· 29 29 30 30 #include "SYS.h" 31 31 32 - #ifdef DARLING 33 - # define ___sigreturn __sigreturn 34 - #endif 35 - 36 32 #if defined(__x86_64__) 37 33 38 34 __SYSCALL(___sigreturn, sigreturn, 2)
+1 -1
src/kernel/libsyscall/sys_x86-64/__sigsuspend.S src/kernel/libsyscall/sys_x86-64/___sigsuspend.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__sigsuspend, sigsuspend, 1, cerror) 9 + __SYSCALL2(___sigsuspend, sigsuspend, 1, cerror) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/__sigsuspend_nocancel.S src/kernel/libsyscall/sys_x86-64/___sigsuspend_nocancel.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__sigsuspend_nocancel, sigsuspend_nocancel, 1, cerror_nocancel) 9 + __SYSCALL2(___sigsuspend_nocancel, sigsuspend_nocancel, 1, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/__sigwait.S src/kernel/libsyscall/sys_x86-64/___sigwait.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__sigwait, __sigwait, 2, cerror) 9 + __SYSCALL2(___sigwait, __sigwait, 2, cerror) 10 10 #endif 11 11
+3 -3
src/kernel/libsyscall/sys_x86-64/__socketpair.S src/kernel/libsyscall/sys_x86-64/___socketpair.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__socketpair, socketpair, 4, cerror_nocancel) 9 + __SYSCALL2(___socketpair, socketpair, 4, cerror_nocancel) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl socketpair 14 - socketpair = __socketpair 13 + .globl _socketpair 14 + .set _socketpair, ___socketpair 15 15 #endif 16 16
+1 -1
src/kernel/libsyscall/sys_x86-64/__stack_snapshot.S src/kernel/libsyscall/sys_x86-64/___stack_snapshot.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__stack_snapshot, stack_snapshot, 5, cerror_nocancel) 9 + __SYSCALL2(___stack_snapshot, stack_snapshot, 5, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/__stat64_extended.S src/kernel/libsyscall/sys_x86-64/___stat64_extended.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__stat64_extended, stat64_extended, 4, cerror_nocancel) 9 + __SYSCALL2(___stat64_extended, stat64_extended, 4, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/__stat_extended.S src/kernel/libsyscall/sys_x86-64/___stat_extended.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__stat_extended, stat_extended, 4, cerror_nocancel) 9 + __SYSCALL2(___stat_extended, stat_extended, 4, cerror_nocancel) 10 10 #endif 11 11
+2 -6
src/kernel/libsyscall/sys_x86-64/__syscall.S src/kernel/libsyscall/sys_x86-64/___syscall.S
··· 30 30 31 31 #include "SYS.h" 32 32 33 - #ifdef DARLING 34 - # define ___syscall __syscall 35 - #endif 36 - 37 33 #if defined(__i386__) 38 34 39 35 LEAF(___syscall, 0) ··· 59 55 #error Unsupported architecture 60 56 #endif 61 57 #if defined(__x86_64__) 62 - .globl syscall 63 - syscall = __syscall 58 + .globl _syscall 59 + .set _syscall, ___syscall 64 60 #endif 65 61
+1 -1
src/kernel/libsyscall/sys_x86-64/__sysctl.S src/kernel/libsyscall/sys_x86-64/___sysctl.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__sysctl, sysctl, 6, cerror_nocancel) 9 + __SYSCALL2(___sysctl, sysctl, 6, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/__sysctlbyname.S src/kernel/libsyscall/sys_x86-64/___sysctlbyname.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__sysctlbyname, sysctlbyname, 6, cerror_nocancel) 9 + __SYSCALL2(___sysctlbyname, sysctlbyname, 6, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/__telemetry.S src/kernel/libsyscall/sys_x86-64/___telemetry.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__telemetry, telemetry, 6, cerror_nocancel) 9 + __SYSCALL2(___telemetry, telemetry, 6, cerror_nocancel) 10 10 #endif 11 11
-4
src/kernel/libsyscall/sys_x86-64/__thread_selfid.S src/kernel/libsyscall/sys_x86-64/___thread_selfid.S
··· 29 29 30 30 #include "SYS.h" 31 31 32 - #ifdef DARLING 33 - # define ___thread_selfid __thread_selfid 34 - #endif 35 - 36 32 #if defined(__x86_64__) 37 33 38 34 __SYSCALL(___thread_selfid, thread_selfid, 0)
-4
src/kernel/libsyscall/sys_x86-64/__thread_selfusage.S src/kernel/libsyscall/sys_x86-64/___thread_selfusage.S
··· 29 29 30 30 #include "SYS.h" 31 31 32 - #ifdef DARLING 33 - # define ___thread_selfusage __thread_selfusage 34 - #endif 35 - 36 32 #if defined(__x86_64__) 37 33 38 34 __SYSCALL(___thread_selfusage, thread_selfusage, 0)
+1 -1
src/kernel/libsyscall/sys_x86-64/__umask_extended.S src/kernel/libsyscall/sys_x86-64/___umask_extended.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__umask_extended, umask_extended, 2, cerror_nocancel) 9 + __SYSCALL2(___umask_extended, umask_extended, 2, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/__unlink.S src/kernel/libsyscall/sys_x86-64/___unlink.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__unlink, unlink, 1, cerror) 9 + __SYSCALL2(___unlink, unlink, 1, cerror) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/__unlinkat.S src/kernel/libsyscall/sys_x86-64/___unlinkat.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__unlinkat, unlinkat, 3, cerror) 9 + __SYSCALL2(___unlinkat, unlinkat, 3, cerror) 10 10 #endif 11 11
+7 -14
src/kernel/libsyscall/sys_x86-64/__vfork.S src/kernel/libsyscall/sys_x86-64/___vfork.S
··· 38 38 39 39 #include "SYS.h" 40 40 41 - #ifdef DARLING 42 - #define ___vfork __vfork 43 - #define _cerror cerror 44 - #endif 45 - 46 41 #if defined(__i386__) 47 42 48 43 #if defined(__DYNAMIC__) ··· 116 111 movq $ SYSCALL_CONSTRUCT_UNIX(SYS_vfork), %rax // code for vfork -> rax 117 112 UNIX_SYSCALL_TRAP // do the system call 118 113 jnb L1 // jump if CF==0 114 + pushq %rdi // put return address back on stack for cerror 119 115 #else 120 - movl $ SYS_vfork, %eax 121 - call __darling_bsd_syscall@PLT 122 - cmpq $0, %rax 116 + movl $ SYS_vfork, %eax 117 + call __darling_bsd_syscall 118 + cmpq $0, %rax 123 119 jnb L1 124 120 #endif 125 - //pushq %rdi // put return address back on stack for cerror 126 121 movq __current_pid@GOTPCREL(%rip), %rcx 127 122 lock 128 123 addq $1, (%rcx) ··· 138 133 jnz L2 139 134 #endif 140 135 xorq %rax, %rax // zero rax 141 - //jmp *%rdi 142 - ret 136 + jmp *%rdi 143 137 144 138 L2: 145 139 movq __current_pid@GOTPCREL(%rip), %rdx ··· 152 146 #error Unsupported architecture 153 147 #endif 154 148 #if defined(__x86_64__) 155 - .type vfork, @function 156 - .globl vfork 157 - vfork = __vfork 149 + .globl _vfork 150 + .set _vfork, ___vfork 158 151 #endif 159 152
+1 -1
src/kernel/libsyscall/sys_x86-64/__wait4.S src/kernel/libsyscall/sys_x86-64/___wait4.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__wait4, wait4, 4, cerror) 9 + __SYSCALL2(___wait4, wait4, 4, cerror) 10 10 #endif 11 11
+3 -3
src/kernel/libsyscall/sys_x86-64/__wait4_nocancel.S src/kernel/libsyscall/sys_x86-64/___wait4_nocancel.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__wait4_nocancel, wait4_nocancel, 4, cerror_nocancel) 9 + __SYSCALL2(___wait4_nocancel, wait4_nocancel, 4, cerror_nocancel) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl wait4 14 - wait4 = __wait4_nocancel 13 + .globl _wait4 14 + .set _wait4, ___wait4_nocancel 15 15 #endif 16 16
+3 -3
src/kernel/libsyscall/sys_x86-64/__waitid_nocancel.S src/kernel/libsyscall/sys_x86-64/___waitid_nocancel.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__waitid_nocancel, waitid_nocancel, 4, cerror_nocancel) 9 + __SYSCALL2(___waitid_nocancel, waitid_nocancel, 4, cerror_nocancel) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl waitid$NOCANCEL 14 - waitid$NOCANCEL = __waitid_nocancel 13 + .globl _waitid$NOCANCEL 14 + .set _waitid$NOCANCEL, ___waitid_nocancel 15 15 #endif 16 16
+1 -1
src/kernel/libsyscall/sys_x86-64/__workq_kernreturn.S src/kernel/libsyscall/sys_x86-64/___workq_kernreturn.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__workq_kernreturn, workq_kernreturn, 4, cerror_nocancel) 9 + __SYSCALL2(___workq_kernreturn, workq_kernreturn, 4, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/__workq_open.S src/kernel/libsyscall/sys_x86-64/___workq_open.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__workq_open, workq_open, 0, cerror_nocancel) 9 + __SYSCALL2(___workq_open, workq_open, 0, cerror_nocancel) 10 10 #endif 11 11
+3 -3
src/kernel/libsyscall/sys_x86-64/__write_nocancel.S src/kernel/libsyscall/sys_x86-64/___write_nocancel.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__write_nocancel, write_nocancel, 3, cerror_nocancel) 9 + __SYSCALL2(___write_nocancel, write_nocancel, 3, cerror_nocancel) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl write$NOCANCEL 14 - write$NOCANCEL = __write_nocancel 13 + .globl _write$NOCANCEL 14 + .set _write$NOCANCEL, ___write_nocancel 15 15 #endif 16 16
+3 -3
src/kernel/libsyscall/sys_x86-64/__writev_nocancel.S src/kernel/libsyscall/sys_x86-64/___writev_nocancel.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(__writev_nocancel, writev_nocancel, 3, cerror_nocancel) 9 + __SYSCALL2(___writev_nocancel, writev_nocancel, 3, cerror_nocancel) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl writev$NOCANCEL 14 - writev$NOCANCEL = __writev_nocancel 13 + .globl _writev$NOCANCEL 14 + .set _writev$NOCANCEL, ___writev_nocancel 15 15 #endif 16 16
+11
src/kernel/libsyscall/sys_x86-64/_grab_pgo_data.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 16 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_grab_pgo_data 5 + #error "SYS_grab_pgo_data not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__x86_64__) 9 + __SYSCALL2(_grab_pgo_data, grab_pgo_data, 4, cerror_nocancel) 10 + #endif 11 +
+11
src/kernel/libsyscall/sys_x86-64/_kevent_qos.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 32 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_kevent_qos 5 + #error "SYS_kevent_qos not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__x86_64__) 9 + __SYSCALL2(_kevent_qos, kevent_qos, 8, cerror_nocancel) 10 + #endif 11 +
+11
src/kernel/libsyscall/sys_x86-64/_netagent_trigger.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_netagent_trigger 5 + #error "SYS_netagent_trigger not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__x86_64__) 9 + __SYSCALL2(_netagent_trigger, netagent_trigger, 2, cerror_nocancel) 10 + #endif 11 +
+11
src/kernel/libsyscall/sys_x86-64/_usrctl.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 4 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_usrctl 5 + #error "SYS_usrctl not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__x86_64__) 9 + __SYSCALL2(_usrctl, usrctl, 1, cerror_nocancel) 10 + #endif 11 +
+1 -1
src/kernel/libsyscall/sys_x86-64/access.S src/kernel/libsyscall/sys_x86-64/_access.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(access, access, 2, cerror) 9 + __SYSCALL2(_access, access, 2, cerror) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/acct.S src/kernel/libsyscall/sys_x86-64/_acct.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(acct, acct, 1, cerror_nocancel) 9 + __SYSCALL2(_acct, acct, 1, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/adjtime.S src/kernel/libsyscall/sys_x86-64/_adjtime.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(adjtime, adjtime, 2, cerror_nocancel) 9 + __SYSCALL2(_adjtime, adjtime, 2, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/aio_cancel.S src/kernel/libsyscall/sys_x86-64/_aio_cancel.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(aio_cancel, aio_cancel, 2, cerror_nocancel) 9 + __SYSCALL2(_aio_cancel, aio_cancel, 2, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/aio_error.S src/kernel/libsyscall/sys_x86-64/_aio_error.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(aio_error, aio_error, 1, cerror_nocancel) 9 + __SYSCALL2(_aio_error, aio_error, 1, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/aio_fsync.S src/kernel/libsyscall/sys_x86-64/_aio_fsync.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(aio_fsync, aio_fsync, 2, cerror_nocancel) 9 + __SYSCALL2(_aio_fsync, aio_fsync, 2, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/aio_read.S src/kernel/libsyscall/sys_x86-64/_aio_read.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(aio_read, aio_read, 1, cerror_nocancel) 9 + __SYSCALL2(_aio_read, aio_read, 1, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/aio_return.S src/kernel/libsyscall/sys_x86-64/_aio_return.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(aio_return, aio_return, 1, cerror_nocancel) 9 + __SYSCALL2(_aio_return, aio_return, 1, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/aio_suspend.S src/kernel/libsyscall/sys_x86-64/_aio_suspend.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(aio_suspend, aio_suspend, 3, cerror) 9 + __SYSCALL2(_aio_suspend, aio_suspend, 3, cerror) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/aio_write.S src/kernel/libsyscall/sys_x86-64/_aio_write.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(aio_write, aio_write, 1, cerror_nocancel) 9 + __SYSCALL2(_aio_write, aio_write, 1, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/audit.S src/kernel/libsyscall/sys_x86-64/_audit.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(audit, audit, 2, cerror_nocancel) 9 + __SYSCALL2(_audit, audit, 2, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/audit_session_join.S src/kernel/libsyscall/sys_x86-64/_audit_session_join.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(audit_session_join, audit_session_join, 1, cerror_nocancel) 9 + __SYSCALL2(_audit_session_join, audit_session_join, 1, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/audit_session_port.S src/kernel/libsyscall/sys_x86-64/_audit_session_port.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(audit_session_port, audit_session_port, 2, cerror_nocancel) 9 + __SYSCALL2(_audit_session_port, audit_session_port, 2, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/audit_session_self.S src/kernel/libsyscall/sys_x86-64/_audit_session_self.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(audit_session_self, audit_session_self, 0, cerror_nocancel) 9 + __SYSCALL2(_audit_session_self, audit_session_self, 0, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/auditctl.S src/kernel/libsyscall/sys_x86-64/_auditctl.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(auditctl, auditctl, 1, cerror_nocancel) 9 + __SYSCALL2(_auditctl, auditctl, 1, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/auditon.S src/kernel/libsyscall/sys_x86-64/_auditon.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(auditon, auditon, 3, cerror_nocancel) 9 + __SYSCALL2(_auditon, auditon, 3, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/change_fdguard_np.S src/kernel/libsyscall/sys_x86-64/_change_fdguard_np.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(change_fdguard_np, change_fdguard_np, 6, cerror_nocancel) 9 + __SYSCALL2(_change_fdguard_np, change_fdguard_np, 6, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/chdir.S src/kernel/libsyscall/sys_x86-64/_chdir.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(chdir, chdir, 1, cerror_nocancel) 9 + __SYSCALL2(_chdir, chdir, 1, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/chflags.S src/kernel/libsyscall/sys_x86-64/_chflags.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(chflags, chflags, 2, cerror_nocancel) 9 + __SYSCALL2(_chflags, chflags, 2, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/chown.S src/kernel/libsyscall/sys_x86-64/_chown.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(chown, chown, 3, cerror_nocancel) 9 + __SYSCALL2(_chown, chown, 3, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/chroot.S src/kernel/libsyscall/sys_x86-64/_chroot.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(chroot, chroot, 1, cerror_nocancel) 9 + __SYSCALL2(_chroot, chroot, 1, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/close.S src/kernel/libsyscall/sys_x86-64/_close.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(close, close, 1, cerror) 9 + __SYSCALL2(_close, close, 1, cerror) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/connectx.S src/kernel/libsyscall/sys_x86-64/_connectx.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(connectx, connectx, 8, cerror) 9 + __SYSCALL2(_connectx, connectx, 8, cerror) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/csops.S src/kernel/libsyscall/sys_x86-64/_csops.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(csops, csops, 4, cerror_nocancel) 9 + __SYSCALL2(_csops, csops, 4, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/csops_audittoken.S src/kernel/libsyscall/sys_x86-64/_csops_audittoken.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(csops_audittoken, csops_audittoken, 5, cerror_nocancel) 9 + __SYSCALL2(_csops_audittoken, csops_audittoken, 5, cerror_nocancel) 10 10 #endif 11 11
+6 -6
src/kernel/libsyscall/sys_x86-64/custom.S
··· 44 44 subl $16, %esp 45 45 movl %edx, 4(%esp) 46 46 movl %eax, (%esp) 47 - CALL_EXTERN(cerror) 47 + CALL_EXTERN(_cerror) 48 48 movl 4(%esp), %esp 49 49 ret 50 50 ··· 54 54 subl $16, %esp 55 55 movl %edx, 4(%esp) 56 56 movl %eax, (%esp) 57 - CALL_EXTERN(cerror_nocancel) 57 + CALL_EXTERN(_cerror_nocancel) 58 58 movl 4(%esp), %esp 59 59 ret 60 60 ··· 69 69 movl $6,%eax 70 70 MACHDEP_SYSCALL_TRAP 71 71 jnb 2f 72 - jmp tramp_cerror@PLT 72 + jmp _tramp_cerror 73 73 2: ret 74 74 75 75 ··· 79 79 movl $5,%eax 80 80 MACHDEP_SYSCALL_TRAP 81 81 jnb 2f 82 - jmp tramp_cerror@PLT 82 + jmp _tramp_cerror 83 83 2: ret 84 84 85 85 #elif defined(__x86_64__) ··· 91 91 MACHDEP_SYSCALL_TRAP 92 92 jnb 2f 93 93 movq %rax, %rdi 94 - jmp cerror@PLT 94 + jmp _cerror 95 95 2: ret 96 96 97 97 ··· 102 102 MACHDEP_SYSCALL_TRAP 103 103 jnb 2f 104 104 movq %rax, %rdi 105 - jmp cerror@PLT 105 + jmp _cerror 106 106 2: ret 107 107 108 108 #endif
+1 -1
src/kernel/libsyscall/sys_x86-64/disconnectx.S src/kernel/libsyscall/sys_x86-64/_disconnectx.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(disconnectx, disconnectx, 3, cerror) 9 + __SYSCALL2(_disconnectx, disconnectx, 3, cerror) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/dup.S src/kernel/libsyscall/sys_x86-64/_dup.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(dup, dup, 1, cerror_nocancel) 9 + __SYSCALL2(_dup, dup, 1, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/dup2.S src/kernel/libsyscall/sys_x86-64/_dup2.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(dup2, dup2, 2, cerror_nocancel) 9 + __SYSCALL2(_dup2, dup2, 2, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/exchangedata.S src/kernel/libsyscall/sys_x86-64/_exchangedata.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(exchangedata, exchangedata, 3, cerror_nocancel) 9 + __SYSCALL2(_exchangedata, exchangedata, 3, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/execve.S src/kernel/libsyscall/sys_x86-64/_execve.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(execve, execve, 3, cerror_nocancel) 9 + __SYSCALL2(_execve, execve, 3, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/faccessat.S src/kernel/libsyscall/sys_x86-64/_faccessat.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(faccessat, faccessat, 4, cerror) 9 + __SYSCALL2(_faccessat, faccessat, 4, cerror) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/fchdir.S src/kernel/libsyscall/sys_x86-64/_fchdir.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(fchdir, fchdir, 1, cerror_nocancel) 9 + __SYSCALL2(_fchdir, fchdir, 1, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/fchflags.S src/kernel/libsyscall/sys_x86-64/_fchflags.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(fchflags, fchflags, 2, cerror_nocancel) 9 + __SYSCALL2(_fchflags, fchflags, 2, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/fchmodat.S src/kernel/libsyscall/sys_x86-64/_fchmodat.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(fchmodat, fchmodat, 4, cerror_nocancel) 9 + __SYSCALL2(_fchmodat, fchmodat, 4, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/fchown.S src/kernel/libsyscall/sys_x86-64/_fchown.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(fchown, fchown, 3, cerror_nocancel) 9 + __SYSCALL2(_fchown, fchown, 3, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/fchownat.S src/kernel/libsyscall/sys_x86-64/_fchownat.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(fchownat, fchownat, 5, cerror_nocancel) 9 + __SYSCALL2(_fchownat, fchownat, 5, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/fdatasync.S src/kernel/libsyscall/sys_x86-64/_fdatasync.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(fdatasync, fdatasync, 1, cerror) 9 + __SYSCALL2(_fdatasync, fdatasync, 1, cerror) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/ffsctl.S src/kernel/libsyscall/sys_x86-64/_ffsctl.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(ffsctl, ffsctl, 4, cerror_nocancel) 9 + __SYSCALL2(_ffsctl, ffsctl, 4, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/fgetattrlist.S src/kernel/libsyscall/sys_x86-64/_fgetattrlist.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(fgetattrlist, fgetattrlist, 5, cerror_nocancel) 9 + __SYSCALL2(_fgetattrlist, fgetattrlist, 5, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/fgetxattr.S src/kernel/libsyscall/sys_x86-64/_fgetxattr.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(fgetxattr, fgetxattr, 6, cerror_nocancel) 9 + __SYSCALL2(_fgetxattr, fgetxattr, 6, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/fhopen.S src/kernel/libsyscall/sys_x86-64/_fhopen.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(fhopen, fhopen, 2, cerror_nocancel) 9 + __SYSCALL2(_fhopen, fhopen, 2, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/fileport_makefd.S src/kernel/libsyscall/sys_x86-64/_fileport_makefd.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(fileport_makefd, fileport_makefd, 1, cerror_nocancel) 9 + __SYSCALL2(_fileport_makefd, fileport_makefd, 1, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/fileport_makeport.S src/kernel/libsyscall/sys_x86-64/_fileport_makeport.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(fileport_makeport, fileport_makeport, 2, cerror_nocancel) 9 + __SYSCALL2(_fileport_makeport, fileport_makeport, 2, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/flistxattr.S src/kernel/libsyscall/sys_x86-64/_flistxattr.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(flistxattr, flistxattr, 4, cerror_nocancel) 9 + __SYSCALL2(_flistxattr, flistxattr, 4, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/flock.S src/kernel/libsyscall/sys_x86-64/_flock.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(flock, flock, 2, cerror_nocancel) 9 + __SYSCALL2(_flock, flock, 2, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/fpathconf.S src/kernel/libsyscall/sys_x86-64/_fpathconf.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(fpathconf, fpathconf, 2, cerror) 9 + __SYSCALL2(_fpathconf, fpathconf, 2, cerror) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/fremovexattr.S src/kernel/libsyscall/sys_x86-64/_fremovexattr.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(fremovexattr, fremovexattr, 3, cerror_nocancel) 9 + __SYSCALL2(_fremovexattr, fremovexattr, 3, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/fsctl.S src/kernel/libsyscall/sys_x86-64/_fsctl.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(fsctl, fsctl, 4, cerror_nocancel) 9 + __SYSCALL2(_fsctl, fsctl, 4, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/fsetattrlist.S src/kernel/libsyscall/sys_x86-64/_fsetattrlist.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(fsetattrlist, fsetattrlist, 5, cerror_nocancel) 9 + __SYSCALL2(_fsetattrlist, fsetattrlist, 5, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/fsetxattr.S src/kernel/libsyscall/sys_x86-64/_fsetxattr.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(fsetxattr, fsetxattr, 6, cerror_nocancel) 9 + __SYSCALL2(_fsetxattr, fsetxattr, 6, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/fstat.S src/kernel/libsyscall/sys_x86-64/_fstat.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(fstat, fstat, 2, cerror) 9 + __SYSCALL2(_fstat, fstat, 2, cerror) 10 10 #endif 11 11
+3 -3
src/kernel/libsyscall/sys_x86-64/fstat64.S src/kernel/libsyscall/sys_x86-64/_fstat64.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(fstat64, fstat64, 2, cerror_nocancel) 9 + __SYSCALL2(_fstat64, fstat64, 2, cerror_nocancel) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl fstat$INODE64 14 - fstat$INODE64 = fstat64 13 + .globl _fstat$INODE64 14 + .set _fstat$INODE64, _fstat64 15 15 #endif 16 16
+1 -1
src/kernel/libsyscall/sys_x86-64/fstatat.S src/kernel/libsyscall/sys_x86-64/_fstatat.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(fstatat, fstatat, 4, cerror) 9 + __SYSCALL2(_fstatat, fstatat, 4, cerror) 10 10 #endif 11 11
+3 -3
src/kernel/libsyscall/sys_x86-64/fstatat64.S src/kernel/libsyscall/sys_x86-64/_fstatat64.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(fstatat64, fstatat64, 4, cerror_nocancel) 9 + __SYSCALL2(_fstatat64, fstatat64, 4, cerror_nocancel) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl fstatat$INODE64 14 - fstatat$INODE64 = fstatat64 13 + .globl _fstatat$INODE64 14 + .set _fstatat$INODE64, _fstatat64 15 15 #endif 16 16
+1 -1
src/kernel/libsyscall/sys_x86-64/fstatfs.S src/kernel/libsyscall/sys_x86-64/_fstatfs.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(fstatfs, fstatfs, 2, cerror_nocancel) 9 + __SYSCALL2(_fstatfs, fstatfs, 2, cerror_nocancel) 10 10 #endif 11 11
+3 -3
src/kernel/libsyscall/sys_x86-64/fstatfs64.S src/kernel/libsyscall/sys_x86-64/_fstatfs64.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(fstatfs64, fstatfs64, 2, cerror_nocancel) 9 + __SYSCALL2(_fstatfs64, fstatfs64, 2, cerror_nocancel) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl fstatfs$INODE64 14 - fstatfs$INODE64 = fstatfs64 13 + .globl _fstatfs$INODE64 14 + .set _fstatfs$INODE64, _fstatfs64 15 15 #endif 16 16
+1 -1
src/kernel/libsyscall/sys_x86-64/fsync.S src/kernel/libsyscall/sys_x86-64/_fsync.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(fsync, fsync, 1, cerror) 9 + __SYSCALL2(_fsync, fsync, 1, cerror) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/ftruncate.S src/kernel/libsyscall/sys_x86-64/_ftruncate.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(ftruncate, ftruncate, 2, cerror_nocancel) 9 + __SYSCALL2(_ftruncate, ftruncate, 2, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/futimes.S src/kernel/libsyscall/sys_x86-64/_futimes.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(futimes, futimes, 2, cerror_nocancel) 9 + __SYSCALL2(_futimes, futimes, 2, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/getattrlistat.S src/kernel/libsyscall/sys_x86-64/_getattrlistat.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(getattrlistat, getattrlistat, 6, cerror_nocancel) 9 + __SYSCALL2(_getattrlistat, getattrlistat, 6, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/getattrlistbulk.S src/kernel/libsyscall/sys_x86-64/_getattrlistbulk.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(getattrlistbulk, getattrlistbulk, 5, cerror_nocancel) 9 + __SYSCALL2(_getattrlistbulk, getattrlistbulk, 5, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/getaudit_addr.S src/kernel/libsyscall/sys_x86-64/_getaudit_addr.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(getaudit_addr, getaudit_addr, 2, cerror_nocancel) 9 + __SYSCALL2(_getaudit_addr, getaudit_addr, 2, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/getauid.S src/kernel/libsyscall/sys_x86-64/_getauid.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(getauid, getauid, 1, cerror_nocancel) 9 + __SYSCALL2(_getauid, getauid, 1, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/getdirentries.S src/kernel/libsyscall/sys_x86-64/_getdirentries.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(getdirentries, getdirentries, 4, cerror_nocancel) 9 + __SYSCALL2(_getdirentries, getdirentries, 4, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/getdirentriesattr.S src/kernel/libsyscall/sys_x86-64/_getdirentriesattr.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(getdirentriesattr, getdirentriesattr, 8, cerror_nocancel) 9 + __SYSCALL2(_getdirentriesattr, getdirentriesattr, 8, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/getdtablesize.S src/kernel/libsyscall/sys_x86-64/_getdtablesize.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(getdtablesize, getdtablesize, 0, cerror_nocancel) 9 + __SYSCALL2(_getdtablesize, getdtablesize, 0, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/getegid.S src/kernel/libsyscall/sys_x86-64/_getegid.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(getegid, getegid, 0, cerror_nocancel) 9 + __SYSCALL2(_getegid, getegid, 0, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/geteuid.S src/kernel/libsyscall/sys_x86-64/_geteuid.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(geteuid, geteuid, 0, cerror_nocancel) 9 + __SYSCALL2(_geteuid, geteuid, 0, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/getfh.S src/kernel/libsyscall/sys_x86-64/_getfh.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(getfh, getfh, 2, cerror_nocancel) 9 + __SYSCALL2(_getfh, getfh, 2, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/getfsstat.S src/kernel/libsyscall/sys_x86-64/_getfsstat.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(getfsstat, getfsstat, 3, cerror_nocancel) 9 + __SYSCALL2(_getfsstat, getfsstat, 3, cerror_nocancel) 10 10 #endif 11 11
+3 -3
src/kernel/libsyscall/sys_x86-64/getfsstat64.S src/kernel/libsyscall/sys_x86-64/_getfsstat64.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(getfsstat64, getfsstat64, 3, cerror_nocancel) 9 + __SYSCALL2(_getfsstat64, getfsstat64, 3, cerror_nocancel) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl getfsstat$INODE64 14 - getfsstat$INODE64 = getfsstat64 13 + .globl _getfsstat$INODE64 14 + .set _getfsstat$INODE64, _getfsstat64 15 15 #endif 16 16
+1 -1
src/kernel/libsyscall/sys_x86-64/getgid.S src/kernel/libsyscall/sys_x86-64/_getgid.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(getgid, getgid, 0, cerror_nocancel) 9 + __SYSCALL2(_getgid, getgid, 0, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/getgroups.S src/kernel/libsyscall/sys_x86-64/_getgroups.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(getgroups, getgroups, 2, cerror_nocancel) 9 + __SYSCALL2(_getgroups, getgroups, 2, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/getitimer.S src/kernel/libsyscall/sys_x86-64/_getitimer.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(getitimer, getitimer, 2, cerror_nocancel) 9 + __SYSCALL2(_getitimer, getitimer, 2, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/getpgid.S src/kernel/libsyscall/sys_x86-64/_getpgid.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(getpgid, getpgid, 1, cerror_nocancel) 9 + __SYSCALL2(_getpgid, getpgid, 1, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/getpgrp.S src/kernel/libsyscall/sys_x86-64/_getpgrp.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(getpgrp, getpgrp, 0, cerror_nocancel) 9 + __SYSCALL2(_getpgrp, getpgrp, 0, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/getppid.S src/kernel/libsyscall/sys_x86-64/_getppid.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(getppid, getppid, 0, cerror_nocancel) 9 + __SYSCALL2(_getppid, getppid, 0, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/getpriority.S src/kernel/libsyscall/sys_x86-64/_getpriority.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(getpriority, getpriority, 2, cerror_nocancel) 9 + __SYSCALL2(_getpriority, getpriority, 2, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/getrusage.S src/kernel/libsyscall/sys_x86-64/_getrusage.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(getrusage, getrusage, 2, cerror_nocancel) 9 + __SYSCALL2(_getrusage, getrusage, 2, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/getsid.S src/kernel/libsyscall/sys_x86-64/_getsid.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(getsid, getsid, 1, cerror_nocancel) 9 + __SYSCALL2(_getsid, getsid, 1, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/getsockopt.S src/kernel/libsyscall/sys_x86-64/_getsockopt.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(getsockopt, getsockopt, 5, cerror_nocancel) 9 + __SYSCALL2(_getsockopt, getsockopt, 5, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/getuid.S src/kernel/libsyscall/sys_x86-64/_getuid.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(getuid, getuid, 0, cerror_nocancel) 9 + __SYSCALL2(_getuid, getuid, 0, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/getxattr.S src/kernel/libsyscall/sys_x86-64/_getxattr.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(getxattr, getxattr, 6, cerror_nocancel) 9 + __SYSCALL2(_getxattr, getxattr, 6, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/guarded_close_np.S src/kernel/libsyscall/sys_x86-64/_guarded_close_np.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(guarded_close_np, guarded_close_np, 2, cerror_nocancel) 9 + __SYSCALL2(_guarded_close_np, guarded_close_np, 2, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/guarded_kqueue_np.S src/kernel/libsyscall/sys_x86-64/_guarded_kqueue_np.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(guarded_kqueue_np, guarded_kqueue_np, 2, cerror_nocancel) 9 + __SYSCALL2(_guarded_kqueue_np, guarded_kqueue_np, 2, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/guarded_pwrite_np.S src/kernel/libsyscall/sys_x86-64/_guarded_pwrite_np.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(guarded_pwrite_np, guarded_pwrite_np, 5, cerror_nocancel) 9 + __SYSCALL2(_guarded_pwrite_np, guarded_pwrite_np, 5, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/guarded_write_np.S src/kernel/libsyscall/sys_x86-64/_guarded_write_np.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(guarded_write_np, guarded_write_np, 4, cerror_nocancel) 9 + __SYSCALL2(_guarded_write_np, guarded_write_np, 4, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/guarded_writev_np.S src/kernel/libsyscall/sys_x86-64/_guarded_writev_np.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(guarded_writev_np, guarded_writev_np, 4, cerror_nocancel) 9 + __SYSCALL2(_guarded_writev_np, guarded_writev_np, 4, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/issetugid.S src/kernel/libsyscall/sys_x86-64/_issetugid.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(issetugid, issetugid, 0, cerror_nocancel) 9 + __SYSCALL2(_issetugid, issetugid, 0, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/kas_info.S src/kernel/libsyscall/sys_x86-64/_kas_info.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(kas_info, kas_info, 3, cerror_nocancel) 9 + __SYSCALL2(_kas_info, kas_info, 3, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/kevent.S src/kernel/libsyscall/sys_x86-64/_kevent.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(kevent, kevent, 6, cerror_nocancel) 9 + __SYSCALL2(_kevent, kevent, 6, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/kevent64.S src/kernel/libsyscall/sys_x86-64/_kevent64.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(kevent64, kevent64, 7, cerror_nocancel) 9 + __SYSCALL2(_kevent64, kevent64, 7, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/kqueue.S src/kernel/libsyscall/sys_x86-64/_kqueue.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(kqueue, kqueue, 0, cerror_nocancel) 9 + __SYSCALL2(_kqueue, kqueue, 0, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/ledger.S src/kernel/libsyscall/sys_x86-64/_ledger.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(ledger, ledger, 4, cerror_nocancel) 9 + __SYSCALL2(_ledger, ledger, 4, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/link.S src/kernel/libsyscall/sys_x86-64/_link.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(link, link, 2, cerror) 9 + __SYSCALL2(_link, link, 2, cerror) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/linkat.S src/kernel/libsyscall/sys_x86-64/_linkat.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(linkat, linkat, 5, cerror) 9 + __SYSCALL2(_linkat, linkat, 5, cerror) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/lio_listio.S src/kernel/libsyscall/sys_x86-64/_lio_listio.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(lio_listio, lio_listio, 4, cerror_nocancel) 9 + __SYSCALL2(_lio_listio, lio_listio, 4, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/listxattr.S src/kernel/libsyscall/sys_x86-64/_listxattr.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(listxattr, listxattr, 4, cerror_nocancel) 9 + __SYSCALL2(_listxattr, listxattr, 4, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/lstat.S src/kernel/libsyscall/sys_x86-64/_lstat.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(lstat, lstat, 2, cerror) 9 + __SYSCALL2(_lstat, lstat, 2, cerror) 10 10 #endif 11 11
+3 -3
src/kernel/libsyscall/sys_x86-64/lstat64.S src/kernel/libsyscall/sys_x86-64/_lstat64.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(lstat64, lstat64, 2, cerror_nocancel) 9 + __SYSCALL2(_lstat64, lstat64, 2, cerror_nocancel) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl lstat$INODE64 14 - lstat$INODE64 = lstat64 13 + .globl _lstat$INODE64 14 + .set _lstat$INODE64, _lstat64 15 15 #endif 16 16
+3 -3
src/kernel/libsyscall/sys_x86-64/madvise.S src/kernel/libsyscall/sys_x86-64/_madvise.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(madvise, madvise, 3, cerror_nocancel) 9 + __SYSCALL2(_madvise, madvise, 3, cerror_nocancel) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl posix_madvise 14 - posix_madvise = madvise 13 + .globl _posix_madvise 14 + .set _posix_madvise, _madvise 15 15 #endif 16 16
+1 -1
src/kernel/libsyscall/sys_x86-64/memorystatus_control.S src/kernel/libsyscall/sys_x86-64/_memorystatus_control.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(memorystatus_control, memorystatus_control, 5, cerror_nocancel) 9 + __SYSCALL2(_memorystatus_control, memorystatus_control, 5, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/memorystatus_get_level.S src/kernel/libsyscall/sys_x86-64/_memorystatus_get_level.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(memorystatus_get_level, memorystatus_get_level, 1, cerror_nocancel) 9 + __SYSCALL2(_memorystatus_get_level, memorystatus_get_level, 1, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/mincore.S src/kernel/libsyscall/sys_x86-64/_mincore.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(mincore, mincore, 3, cerror_nocancel) 9 + __SYSCALL2(_mincore, mincore, 3, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/minherit.S src/kernel/libsyscall/sys_x86-64/_minherit.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(minherit, minherit, 3, cerror_nocancel) 9 + __SYSCALL2(_minherit, minherit, 3, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/mkdir.S src/kernel/libsyscall/sys_x86-64/_mkdir.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(mkdir, mkdir, 2, cerror_nocancel) 9 + __SYSCALL2(_mkdir, mkdir, 2, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/mkdirat.S src/kernel/libsyscall/sys_x86-64/_mkdirat.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(mkdirat, mkdirat, 3, cerror_nocancel) 9 + __SYSCALL2(_mkdirat, mkdirat, 3, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/mkfifo.S src/kernel/libsyscall/sys_x86-64/_mkfifo.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(mkfifo, mkfifo, 2, cerror_nocancel) 9 + __SYSCALL2(_mkfifo, mkfifo, 2, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/mknod.S src/kernel/libsyscall/sys_x86-64/_mknod.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(mknod, mknod, 3, cerror_nocancel) 9 + __SYSCALL2(_mknod, mknod, 3, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/mlock.S src/kernel/libsyscall/sys_x86-64/_mlock.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(mlock, mlock, 2, cerror_nocancel) 9 + __SYSCALL2(_mlock, mlock, 2, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/mlockall.S src/kernel/libsyscall/sys_x86-64/_mlockall.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(mlockall, mlockall, 1, cerror_nocancel) 9 + __SYSCALL2(_mlockall, mlockall, 1, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/modwatch.S src/kernel/libsyscall/sys_x86-64/_modwatch.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(modwatch, modwatch, 2, cerror_nocancel) 9 + __SYSCALL2(_modwatch, modwatch, 2, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/mount.S src/kernel/libsyscall/sys_x86-64/_mount.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(mount, mount, 4, cerror_nocancel) 9 + __SYSCALL2(_mount, mount, 4, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/mremap_encrypted.S src/kernel/libsyscall/sys_x86-64/_mremap_encrypted.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(mremap_encrypted, mremap_encrypted, 5, cerror_nocancel) 9 + __SYSCALL2(_mremap_encrypted, mremap_encrypted, 5, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/msgget.S src/kernel/libsyscall/sys_x86-64/_msgget.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(msgget, msgget, 2, cerror_nocancel) 9 + __SYSCALL2(_msgget, msgget, 2, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/msgrcv.S src/kernel/libsyscall/sys_x86-64/_msgrcv.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(msgrcv, msgrcv, 5, cerror) 9 + __SYSCALL2(_msgrcv, msgrcv, 5, cerror) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/msgsnd.S src/kernel/libsyscall/sys_x86-64/_msgsnd.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(msgsnd, msgsnd, 4, cerror) 9 + __SYSCALL2(_msgsnd, msgsnd, 4, cerror) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/munlock.S src/kernel/libsyscall/sys_x86-64/_munlock.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(munlock, munlock, 2, cerror_nocancel) 9 + __SYSCALL2(_munlock, munlock, 2, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/munlockall.S src/kernel/libsyscall/sys_x86-64/_munlockall.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(munlockall, munlockall, 1, cerror_nocancel) 9 + __SYSCALL2(_munlockall, munlockall, 1, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/necp_match_policy.S src/kernel/libsyscall/sys_x86-64/_necp_match_policy.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(necp_match_policy, necp_match_policy, 3, cerror_nocancel) 9 + __SYSCALL2(_necp_match_policy, necp_match_policy, 3, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/nfsclnt.S src/kernel/libsyscall/sys_x86-64/_nfsclnt.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(nfsclnt, nfsclnt, 2, cerror_nocancel) 9 + __SYSCALL2(_nfsclnt, nfsclnt, 2, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/nfssvc.S src/kernel/libsyscall/sys_x86-64/_nfssvc.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(nfssvc, nfssvc, 2, cerror_nocancel) 9 + __SYSCALL2(_nfssvc, nfssvc, 2, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/openbyid_np.S src/kernel/libsyscall/sys_x86-64/_openbyid_np.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(openbyid_np, openbyid_np, 3, cerror_nocancel) 9 + __SYSCALL2(_openbyid_np, openbyid_np, 3, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/pathconf.S src/kernel/libsyscall/sys_x86-64/_pathconf.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(pathconf, pathconf, 2, cerror) 9 + __SYSCALL2(_pathconf, pathconf, 2, cerror) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/peeloff.S src/kernel/libsyscall/sys_x86-64/_peeloff.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(peeloff, peeloff, 2, cerror) 9 + __SYSCALL2(_peeloff, peeloff, 2, cerror) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/pid_resume.S src/kernel/libsyscall/sys_x86-64/_pid_resume.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(pid_resume, pid_resume, 1, cerror_nocancel) 9 + __SYSCALL2(_pid_resume, pid_resume, 1, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/pid_suspend.S src/kernel/libsyscall/sys_x86-64/_pid_suspend.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(pid_suspend, pid_suspend, 1, cerror_nocancel) 9 + __SYSCALL2(_pid_suspend, pid_suspend, 1, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/poll.S src/kernel/libsyscall/sys_x86-64/_poll.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(poll, poll, 3, cerror) 9 + __SYSCALL2(_poll, poll, 3, cerror) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/pread.S src/kernel/libsyscall/sys_x86-64/_pread.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(pread, pread, 4, cerror) 9 + __SYSCALL2(_pread, pread, 4, cerror) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/proc_rlimit_control.S src/kernel/libsyscall/sys_x86-64/_proc_rlimit_control.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(proc_rlimit_control, proc_rlimit_control, 3, cerror_nocancel) 9 + __SYSCALL2(_proc_rlimit_control, proc_rlimit_control, 3, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/proc_trace_log.S src/kernel/libsyscall/sys_x86-64/_proc_trace_log.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(proc_trace_log, proc_trace_log, 2, cerror_nocancel) 9 + __SYSCALL2(_proc_trace_log, proc_trace_log, 2, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/proc_uuid_policy.S src/kernel/libsyscall/sys_x86-64/_proc_uuid_policy.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(proc_uuid_policy, proc_uuid_policy, 4, cerror_nocancel) 9 + __SYSCALL2(_proc_uuid_policy, proc_uuid_policy, 4, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/pwrite.S src/kernel/libsyscall/sys_x86-64/_pwrite.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(pwrite, pwrite, 4, cerror) 9 + __SYSCALL2(_pwrite, pwrite, 4, cerror) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/quota.S src/kernel/libsyscall/sys_x86-64/_quota.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(quota, quota, 4, cerror_nocancel) 9 + __SYSCALL2(_quota, quota, 4, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/quotactl.S src/kernel/libsyscall/sys_x86-64/_quotactl.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(quotactl, quotactl, 4, cerror_nocancel) 9 + __SYSCALL2(_quotactl, quotactl, 4, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/read.S src/kernel/libsyscall/sys_x86-64/_read.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(read, read, 3, cerror) 9 + __SYSCALL2(_read, read, 3, cerror) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/readlink.S src/kernel/libsyscall/sys_x86-64/_readlink.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(readlink, readlink, 3, cerror_nocancel) 9 + __SYSCALL2(_readlink, readlink, 3, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/readlinkat.S src/kernel/libsyscall/sys_x86-64/_readlinkat.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(readlinkat, readlinkat, 4, cerror_nocancel) 9 + __SYSCALL2(_readlinkat, readlinkat, 4, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/readv.S src/kernel/libsyscall/sys_x86-64/_readv.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(readv, readv, 3, cerror) 9 + __SYSCALL2(_readv, readv, 3, cerror) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/reboot.S src/kernel/libsyscall/sys_x86-64/_reboot.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(reboot, reboot, 2, cerror_nocancel) 9 + __SYSCALL2(_reboot, reboot, 2, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/recvmsg_x.S src/kernel/libsyscall/sys_x86-64/_recvmsg_x.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(recvmsg_x, recvmsg_x, 4, cerror_nocancel) 9 + __SYSCALL2(_recvmsg_x, recvmsg_x, 4, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/removexattr.S src/kernel/libsyscall/sys_x86-64/_removexattr.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(removexattr, removexattr, 3, cerror_nocancel) 9 + __SYSCALL2(_removexattr, removexattr, 3, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/revoke.S src/kernel/libsyscall/sys_x86-64/_revoke.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(revoke, revoke, 1, cerror_nocancel) 9 + __SYSCALL2(_revoke, revoke, 1, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/searchfs.S src/kernel/libsyscall/sys_x86-64/_searchfs.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(searchfs, searchfs, 6, cerror_nocancel) 9 + __SYSCALL2(_searchfs, searchfs, 6, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/sem_close.S src/kernel/libsyscall/sys_x86-64/_sem_close.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(sem_close, sem_close, 1, cerror_nocancel) 9 + __SYSCALL2(_sem_close, sem_close, 1, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/sem_post.S src/kernel/libsyscall/sys_x86-64/_sem_post.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(sem_post, sem_post, 1, cerror_nocancel) 9 + __SYSCALL2(_sem_post, sem_post, 1, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/sem_trywait.S src/kernel/libsyscall/sys_x86-64/_sem_trywait.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(sem_trywait, sem_trywait, 1, cerror_nocancel) 9 + __SYSCALL2(_sem_trywait, sem_trywait, 1, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/sem_unlink.S src/kernel/libsyscall/sys_x86-64/_sem_unlink.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(sem_unlink, sem_unlink, 1, cerror_nocancel) 9 + __SYSCALL2(_sem_unlink, sem_unlink, 1, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/sem_wait.S src/kernel/libsyscall/sys_x86-64/_sem_wait.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(sem_wait, sem_wait, 1, cerror) 9 + __SYSCALL2(_sem_wait, sem_wait, 1, cerror) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/semget.S src/kernel/libsyscall/sys_x86-64/_semget.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(semget, semget, 3, cerror_nocancel) 9 + __SYSCALL2(_semget, semget, 3, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/semop.S src/kernel/libsyscall/sys_x86-64/_semop.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(semop, semop, 3, cerror) 9 + __SYSCALL2(_semop, semop, 3, cerror) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/sendfile.S src/kernel/libsyscall/sys_x86-64/_sendfile.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(sendfile, sendfile, 6, cerror_nocancel) 9 + __SYSCALL2(_sendfile, sendfile, 6, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/sendmsg_x.S src/kernel/libsyscall/sys_x86-64/_sendmsg_x.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(sendmsg_x, sendmsg_x, 4, cerror_nocancel) 9 + __SYSCALL2(_sendmsg_x, sendmsg_x, 4, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/setaudit_addr.S src/kernel/libsyscall/sys_x86-64/_setaudit_addr.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(setaudit_addr, setaudit_addr, 2, cerror_nocancel) 9 + __SYSCALL2(_setaudit_addr, setaudit_addr, 2, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/setauid.S src/kernel/libsyscall/sys_x86-64/_setauid.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(setauid, setauid, 1, cerror_nocancel) 9 + __SYSCALL2(_setauid, setauid, 1, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/setegid.S src/kernel/libsyscall/sys_x86-64/_setegid.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(setegid, setegid, 1, cerror_nocancel) 9 + __SYSCALL2(_setegid, setegid, 1, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/seteuid.S src/kernel/libsyscall/sys_x86-64/_seteuid.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(seteuid, seteuid, 1, cerror_nocancel) 9 + __SYSCALL2(_seteuid, seteuid, 1, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/setgid.S src/kernel/libsyscall/sys_x86-64/_setgid.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(setgid, setgid, 1, cerror_nocancel) 9 + __SYSCALL2(_setgid, setgid, 1, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/setgroups.S src/kernel/libsyscall/sys_x86-64/_setgroups.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(setgroups, setgroups, 2, cerror_nocancel) 9 + __SYSCALL2(_setgroups, setgroups, 2, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/setitimer.S src/kernel/libsyscall/sys_x86-64/_setitimer.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(setitimer, setitimer, 3, cerror_nocancel) 9 + __SYSCALL2(_setitimer, setitimer, 3, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/setpgid.S src/kernel/libsyscall/sys_x86-64/_setpgid.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(setpgid, setpgid, 2, cerror_nocancel) 9 + __SYSCALL2(_setpgid, setpgid, 2, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/setprivexec.S src/kernel/libsyscall/sys_x86-64/_setprivexec.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(setprivexec, setprivexec, 1, cerror_nocancel) 9 + __SYSCALL2(_setprivexec, setprivexec, 1, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/setquota.S src/kernel/libsyscall/sys_x86-64/_setquota.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(setquota, setquota, 2, cerror_nocancel) 9 + __SYSCALL2(_setquota, setquota, 2, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/setsid.S src/kernel/libsyscall/sys_x86-64/_setsid.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(setsid, setsid, 0, cerror_nocancel) 9 + __SYSCALL2(_setsid, setsid, 0, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/setsockopt.S src/kernel/libsyscall/sys_x86-64/_setsockopt.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(setsockopt, setsockopt, 5, cerror_nocancel) 9 + __SYSCALL2(_setsockopt, setsockopt, 5, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/setuid.S src/kernel/libsyscall/sys_x86-64/_setuid.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(setuid, setuid, 1, cerror_nocancel) 9 + __SYSCALL2(_setuid, setuid, 1, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/setxattr.S src/kernel/libsyscall/sys_x86-64/_setxattr.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(setxattr, setxattr, 6, cerror_nocancel) 9 + __SYSCALL2(_setxattr, setxattr, 6, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/shm_unlink.S src/kernel/libsyscall/sys_x86-64/_shm_unlink.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(shm_unlink, shm_unlink, 1, cerror_nocancel) 9 + __SYSCALL2(_shm_unlink, shm_unlink, 1, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/shmat.S src/kernel/libsyscall/sys_x86-64/_shmat.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(shmat, shmat, 3, cerror_nocancel) 9 + __SYSCALL2(_shmat, shmat, 3, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/shmdt.S src/kernel/libsyscall/sys_x86-64/_shmdt.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(shmdt, shmdt, 1, cerror_nocancel) 9 + __SYSCALL2(_shmdt, shmdt, 1, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/shmget.S src/kernel/libsyscall/sys_x86-64/_shmget.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(shmget, shmget, 3, cerror_nocancel) 9 + __SYSCALL2(_shmget, shmget, 3, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/shutdown.S src/kernel/libsyscall/sys_x86-64/_shutdown.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(shutdown, shutdown, 2, cerror_nocancel) 9 + __SYSCALL2(_shutdown, shutdown, 2, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/sigpending.S src/kernel/libsyscall/sys_x86-64/_sigpending.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(sigpending, sigpending, 1, cerror_nocancel) 9 + __SYSCALL2(_sigpending, sigpending, 1, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/sigprocmask.S src/kernel/libsyscall/sys_x86-64/_sigprocmask.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(sigprocmask, sigprocmask, 3, cerror_nocancel) 9 + __SYSCALL2(_sigprocmask, sigprocmask, 3, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/socket.S src/kernel/libsyscall/sys_x86-64/_socket.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(socket, socket, 3, cerror_nocancel) 9 + __SYSCALL2(_socket, socket, 3, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/socket_delegate.S src/kernel/libsyscall/sys_x86-64/_socket_delegate.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(socket_delegate, socket_delegate, 4, cerror_nocancel) 9 + __SYSCALL2(_socket_delegate, socket_delegate, 4, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/stat.S src/kernel/libsyscall/sys_x86-64/_stat.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(stat, stat, 2, cerror) 9 + __SYSCALL2(_stat, stat, 2, cerror) 10 10 #endif 11 11
+3 -3
src/kernel/libsyscall/sys_x86-64/stat64.S src/kernel/libsyscall/sys_x86-64/_stat64.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(stat64, stat64, 2, cerror_nocancel) 9 + __SYSCALL2(_stat64, stat64, 2, cerror_nocancel) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl stat$INODE64 14 - stat$INODE64 = stat64 13 + .globl _stat$INODE64 14 + .set _stat$INODE64, _stat64 15 15 #endif 16 16
+1 -1
src/kernel/libsyscall/sys_x86-64/statfs.S src/kernel/libsyscall/sys_x86-64/_statfs.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(statfs, statfs, 2, cerror_nocancel) 9 + __SYSCALL2(_statfs, statfs, 2, cerror_nocancel) 10 10 #endif 11 11
+3 -3
src/kernel/libsyscall/sys_x86-64/statfs64.S src/kernel/libsyscall/sys_x86-64/_statfs64.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(statfs64, statfs64, 2, cerror_nocancel) 9 + __SYSCALL2(_statfs64, statfs64, 2, cerror_nocancel) 10 10 #endif 11 11 12 12 #if defined(__x86_64__) 13 - .globl statfs$INODE64 14 - statfs$INODE64 = statfs64 13 + .globl _statfs$INODE64 14 + .set _statfs$INODE64, _statfs64 15 15 #endif 16 16
+395 -388
src/kernel/libsyscall/sys_x86-64/stubs.list
··· 1 - sys/____old_semwait_signal_nocancel.s 2 - sys/____sigwait_nocancel.s 3 - sys/__accept.s 4 - sys/__accept_nocancel.s 5 - sys/__access_extended.s 6 - sys/__aio_suspend_nocancel.s 7 - sys/__bind.s 8 - sys/__bsdthread_create.s 9 - sys/__bsdthread_ctl.s 10 - sys/__bsdthread_register.s 11 - sys/__bsdthread_terminate.s 12 - sys/__chmod.s 13 - sys/__chmod_extended.s 14 - sys/__chud.s 15 - sys/__close_nocancel.s 16 - sys/__coalition.s 17 - sys/__coalition_info.s 18 - sys/__connect.s 19 - sys/__connect_nocancel.s 20 - sys/__copyfile.s 21 - sys/__csrctl.s 22 - sys/__delete.s 23 - sys/__disable_threadsignal.s 24 - sys/__exit.s 25 - sys/__fchmod.s 26 - sys/__fchmod_extended.s 27 - sys/__fcntl.s 28 - sys/__fcntl_nocancel.s 29 - sys/__fork.s 30 - sys/__fsgetpath.s 31 - sys/__fstat64_extended.s 32 - sys/__fstat_extended.s 33 - sys/__fsync_nocancel.s 34 - sys/__getattrlist.s 35 - sys/__getdirentries64.s 36 - sys/__gethostuuid.s 37 - sys/__getlcid.s 38 - sys/__getlogin.s 39 - sys/__getpeername.s 40 - sys/__getpid.s 41 - sys/__getrlimit.s 42 - sys/__getsgroups.s 43 - sys/__getsockname.s 44 - sys/__gettid.s 45 - sys/__gettimeofday.s 46 - sys/__getwgroups.s 47 - sys/__guarded_open_dprotected_np.s 48 - sys/__guarded_open_np.s 49 - sys/__identitysvc.s 50 - sys/__initgroups.s 51 - sys/__ioctl.s 52 - sys/__iopolicysys.s 53 - sys/__kdebug_trace.s 54 - sys/__kill.s 55 - sys/__lchown.s 56 - sys/__listen.s 57 - sys/__lseek.s 58 - sys/__lstat64_extended.s 59 - sys/__lstat_extended.s 60 - sys/__mac_execve.s 61 - sys/__mac_get_fd.s 62 - sys/__mac_get_file.s 63 - sys/__mac_get_lcid.s 64 - sys/__mac_get_lctx.s 65 - sys/__mac_get_link.s 66 - sys/__mac_get_mount.s 67 - sys/__mac_get_pid.s 68 - sys/__mac_get_proc.s 69 - sys/__mac_getfsstat.s 70 - sys/__mac_mount.s 71 - sys/__mac_set_fd.s 72 - sys/__mac_set_file.s 73 - sys/__mac_set_lctx.s 74 - sys/__mac_set_link.s 75 - sys/__mac_set_proc.s 76 - sys/__mac_syscall.s 77 - sys/__mkdir_extended.s 78 - sys/__mkfifo_extended.s 79 - sys/__mmap.s 80 - sys/__mprotect.s 81 - sys/__msgctl.s 82 - sys/__msgrcv_nocancel.s 83 - sys/__msgsnd_nocancel.s 84 - sys/__msgsys.s 85 - sys/__msync.s 86 - sys/__msync_nocancel.s 87 - sys/__munmap.s 88 - sys/__old_semwait_signal.s 89 - sys/__open.s 90 - sys/__open_dprotected_np.s 91 - sys/__open_extended.s 92 - sys/__open_nocancel.s 93 - sys/__openat.s 94 - sys/__openat_nocancel.s 95 - sys/__pipe.s 96 - sys/__poll_nocancel.s 97 - sys/__posix_spawn.s 98 - sys/__pread_nocancel.s 99 - sys/__proc_info.s 100 - sys/__process_policy.s 101 - sys/__psynch_cvbroad.s 102 - sys/__psynch_cvclrprepost.s 103 - sys/__psynch_cvsignal.s 104 - sys/__psynch_cvwait.s 105 - sys/__psynch_mutexdrop.s 106 - sys/__psynch_mutexwait.s 107 - sys/__psynch_rw_downgrade.s 108 - sys/__psynch_rw_longrdlock.s 109 - sys/__psynch_rw_rdlock.s 110 - sys/__psynch_rw_unlock.s 111 - sys/__psynch_rw_unlock2.s 112 - sys/__psynch_rw_upgrade.s 113 - sys/__psynch_rw_wrlock.s 114 - sys/__psynch_rw_yieldwrlock.s 115 - sys/__pthread_canceled.s 116 - sys/__pthread_chdir.s 117 - sys/__pthread_fchdir.s 118 - sys/__pthread_kill.s 119 - sys/__pthread_markcancel.s 120 - sys/__pthread_sigmask.s 121 - sys/__ptrace.s 122 - sys/__pwrite_nocancel.s 123 - sys/__read_nocancel.s 124 - sys/__readv_nocancel.s 125 - sys/__recvfrom.s 126 - sys/__recvfrom_nocancel.s 127 - sys/__recvmsg.s 128 - sys/__recvmsg_nocancel.s 129 - sys/__rename.s 130 - sys/__rename_ext.s 131 - sys/__renameat.s 132 - sys/__rmdir.s 133 - sys/__select.s 134 - sys/__select_nocancel.s 135 - sys/__sem_open.s 136 - sys/__sem_wait_nocancel.s 137 - sys/__semctl.s 138 - sys/__semsys.s 139 - sys/__semwait_signal.s 140 - sys/__semwait_signal_nocancel.s 141 - sys/__sendmsg.s 142 - sys/__sendmsg_nocancel.s 143 - sys/__sendto.s 144 - sys/__sendto_nocancel.s 145 - sys/__setattrlist.s 146 - sys/__setlcid.s 147 - sys/__setlogin.s 148 - sys/__setpriority.s 149 - sys/__setregid.s 150 - sys/__setreuid.s 151 - sys/__setrlimit.s 152 - sys/__setsgroups.s 153 - sys/__settid.s 154 - sys/__settid_with_pid.s 155 - sys/__settimeofday.s 156 - sys/__setwgroups.s 157 - sys/__sfi_ctl.s 158 - sys/__sfi_pidctl.s 159 - sys/__shared_region_check_np.s 160 - sys/__shared_region_map_and_slide_np.s 161 - sys/__shm_open.s 162 - sys/__shmctl.s 163 - sys/__shmsys.s 164 - sys/__sigaction.s 165 - sys/__sigaltstack.s 166 - sys/__sigreturn.s 167 - sys/__sigsuspend.s 168 - sys/__sigsuspend_nocancel.s 169 - sys/__sigwait.s 170 - sys/__socketpair.s 171 - sys/__stack_snapshot.s 172 - sys/__stat64_extended.s 173 - sys/__stat_extended.s 174 - sys/__syscall.s 175 - sys/__sysctl.s 176 - sys/__sysctlbyname.s 177 - sys/__telemetry.s 178 - sys/__thread_selfid.s 179 - sys/__thread_selfusage.s 180 - sys/__umask_extended.s 181 - sys/__unlink.s 182 - sys/__unlinkat.s 183 - sys/__vfork.s 184 - sys/__wait4.s 185 - sys/__wait4_nocancel.s 186 - sys/__waitid_nocancel.s 187 - sys/__workq_kernreturn.s 188 - sys/__workq_open.s 189 - sys/__write_nocancel.s 190 - sys/__writev_nocancel.s 191 - sys/access.s 192 - sys/acct.s 193 - sys/adjtime.s 194 - sys/aio_cancel.s 195 - sys/aio_error.s 196 - sys/aio_fsync.s 197 - sys/aio_read.s 198 - sys/aio_return.s 199 - sys/aio_suspend.s 200 - sys/aio_write.s 201 - sys/audit.s 202 - sys/audit_session_join.s 203 - sys/audit_session_port.s 204 - sys/audit_session_self.s 205 - sys/auditctl.s 206 - sys/auditon.s 207 - sys/change_fdguard_np.s 208 - sys/chdir.s 209 - sys/chflags.s 210 - sys/chown.s 211 - sys/chroot.s 212 - sys/close.s 213 - sys/connectx.s 214 - sys/csops.s 215 - sys/csops_audittoken.s 216 - sys/custom.s 217 - sys/disconnectx.s 218 - sys/dup.s 219 - sys/dup2.s 220 - sys/exchangedata.s 221 - sys/execve.s 222 - sys/faccessat.s 223 - sys/fchdir.s 224 - sys/fchflags.s 225 - sys/fchmodat.s 226 - sys/fchown.s 227 - sys/fchownat.s 228 - sys/fdatasync.s 229 - sys/ffsctl.s 230 - sys/fgetattrlist.s 231 - sys/fgetxattr.s 232 - sys/fhopen.s 233 - sys/fileport_makefd.s 234 - sys/fileport_makeport.s 235 - sys/flistxattr.s 236 - sys/flock.s 237 - sys/fpathconf.s 238 - sys/fremovexattr.s 239 - sys/fsctl.s 240 - sys/fsetattrlist.s 241 - sys/fsetxattr.s 242 - sys/fstat.s 243 - sys/fstat64.s 244 - sys/fstatat.s 245 - sys/fstatat64.s 246 - sys/fstatfs.s 247 - sys/fstatfs64.s 248 - sys/fsync.s 249 - sys/ftruncate.s 250 - sys/futimes.s 251 - sys/getattrlistat.s 252 - sys/getattrlistbulk.s 253 - sys/getaudit_addr.s 254 - sys/getauid.s 255 - sys/getdirentries.s 256 - sys/getdirentriesattr.s 257 - sys/getdtablesize.s 258 - sys/getegid.s 259 - sys/geteuid.s 260 - sys/getfh.s 261 - sys/getfsstat.s 262 - sys/getfsstat64.s 263 - sys/getgid.s 264 - sys/getgroups.s 265 - sys/getitimer.s 266 - sys/getpgid.s 267 - sys/getpgrp.s 268 - sys/getppid.s 269 - sys/getpriority.s 270 - sys/getrusage.s 271 - sys/getsid.s 272 - sys/getsockopt.s 273 - sys/getuid.s 274 - sys/getxattr.s 275 - sys/guarded_close_np.s 276 - sys/guarded_kqueue_np.s 277 - sys/guarded_pwrite_np.s 278 - sys/guarded_write_np.s 279 - sys/guarded_writev_np.s 280 - sys/issetugid.s 281 - sys/kas_info.s 282 - sys/kevent.s 283 - sys/kevent64.s 284 - sys/kqueue.s 285 - sys/ledger.s 286 - sys/link.s 287 - sys/linkat.s 288 - sys/lio_listio.s 289 - sys/listxattr.s 290 - sys/lstat.s 291 - sys/lstat64.s 292 - sys/madvise.s 293 - sys/memorystatus_control.s 294 - sys/memorystatus_get_level.s 295 - sys/mincore.s 296 - sys/minherit.s 297 - sys/mkdir.s 298 - sys/mkdirat.s 299 - sys/mkfifo.s 300 - sys/mknod.s 301 - sys/mlock.s 302 - sys/mlockall.s 303 - sys/modwatch.s 304 - sys/mount.s 305 - sys/mremap_encrypted.s 306 - sys/msgget.s 307 - sys/msgrcv.s 308 - sys/msgsnd.s 309 - sys/munlock.s 310 - sys/munlockall.s 311 - sys/necp_match_policy.s 312 - sys/nfsclnt.s 313 - sys/nfssvc.s 314 - sys/openbyid_np.s 315 - sys/pathconf.s 316 - sys/peeloff.s 317 - sys/pid_resume.s 318 - sys/pid_suspend.s 319 - sys/poll.s 320 - sys/pread.s 321 - sys/proc_rlimit_control.s 322 - sys/proc_trace_log.s 323 - sys/proc_uuid_policy.s 324 - sys/pwrite.s 325 - sys/quota.s 326 - sys/quotactl.s 327 - sys/read.s 328 - sys/readlink.s 329 - sys/readlinkat.s 330 - sys/readv.s 331 - sys/reboot.s 332 - sys/recvmsg_x.s 333 - sys/removexattr.s 334 - sys/revoke.s 335 - sys/searchfs.s 336 - sys/sem_close.s 337 - sys/sem_post.s 338 - sys/sem_trywait.s 339 - sys/sem_unlink.s 340 - sys/sem_wait.s 341 - sys/semget.s 342 - sys/semop.s 343 - sys/sendfile.s 344 - sys/sendmsg_x.s 345 - sys/setaudit_addr.s 346 - sys/setauid.s 347 - sys/setegid.s 348 - sys/seteuid.s 349 - sys/setgid.s 350 - sys/setgroups.s 351 - sys/setitimer.s 352 - sys/setpgid.s 353 - sys/setprivexec.s 354 - sys/setquota.s 355 - sys/setsid.s 356 - sys/setsockopt.s 357 - sys/setuid.s 358 - sys/setxattr.s 359 - sys/shm_unlink.s 360 - sys/shmat.s 361 - sys/shmdt.s 362 - sys/shmget.s 363 - sys/shutdown.s 364 - sys/sigpending.s 365 - sys/sigprocmask.s 366 - sys/socket.s 367 - sys/socket_delegate.s 368 - sys/stat.s 369 - sys/stat64.s 370 - sys/statfs.s 371 - sys/statfs64.s 372 - sys/swapon.s 373 - sys/symlink.s 374 - sys/symlinkat.s 375 - sys/sync.s 376 - sys/system_override.s 377 - sys/truncate.s 378 - sys/umask.s 379 - sys/undelete.s 380 - sys/unmount.s 381 - sys/utimes.s 382 - sys/vfs_purge.s 383 - sys/vm_pressure_monitor.s 384 - sys/waitevent.s 385 - sys/waitid.s 386 - sys/watchevent.s 387 - sys/write.s 388 - sys/writev.s 1 + sys_x86-64/_____old_semwait_signal_nocancel.s 2 + sys_x86-64/_____sigwait_nocancel.s 3 + sys_x86-64/___accept.s 4 + sys_x86-64/___accept_nocancel.s 5 + sys_x86-64/___access_extended.s 6 + sys_x86-64/___aio_suspend_nocancel.s 7 + sys_x86-64/___bind.s 8 + sys_x86-64/___bsdthread_create.s 9 + sys_x86-64/___bsdthread_ctl.s 10 + sys_x86-64/___bsdthread_register.s 11 + sys_x86-64/___bsdthread_terminate.s 12 + sys_x86-64/___chmod.s 13 + sys_x86-64/___chmod_extended.s 14 + sys_x86-64/___chud.s 15 + sys_x86-64/___close_nocancel.s 16 + sys_x86-64/___coalition.s 17 + sys_x86-64/___coalition_info.s 18 + sys_x86-64/___connect.s 19 + sys_x86-64/___connect_nocancel.s 20 + sys_x86-64/___copyfile.s 21 + sys_x86-64/___csrctl.s 22 + sys_x86-64/___delete.s 23 + sys_x86-64/___disable_threadsignal.s 24 + sys_x86-64/___exit.s 25 + sys_x86-64/___fchmod.s 26 + sys_x86-64/___fchmod_extended.s 27 + sys_x86-64/___fcntl.s 28 + sys_x86-64/___fcntl_nocancel.s 29 + sys_x86-64/___fork.s 30 + sys_x86-64/___fsgetpath.s 31 + sys_x86-64/___fstat64_extended.s 32 + sys_x86-64/___fstat_extended.s 33 + sys_x86-64/___fsync_nocancel.s 34 + sys_x86-64/___getattrlist.s 35 + sys_x86-64/___getdirentries64.s 36 + sys_x86-64/___gethostuuid.s 37 + sys_x86-64/___getlogin.s 38 + sys_x86-64/___getpeername.s 39 + sys_x86-64/___getpid.s 40 + sys_x86-64/___getrlimit.s 41 + sys_x86-64/___getsgroups.s 42 + sys_x86-64/___getsockname.s 43 + sys_x86-64/___gettid.s 44 + sys_x86-64/___gettimeofday.s 45 + sys_x86-64/___getwgroups.s 46 + sys_x86-64/___guarded_open_dprotected_np.s 47 + sys_x86-64/___guarded_open_np.s 48 + sys_x86-64/___identitysvc.s 49 + sys_x86-64/___initgroups.s 50 + sys_x86-64/___ioctl.s 51 + sys_x86-64/___iopolicysys.s 52 + sys_x86-64/___kdebug_trace.s 53 + sys_x86-64/___kdebug_trace64.s 54 + sys_x86-64/___kdebug_trace_string.s 55 + sys_x86-64/___kill.s 56 + sys_x86-64/___lchown.s 57 + sys_x86-64/___listen.s 58 + sys_x86-64/___lseek.s 59 + sys_x86-64/___lstat64_extended.s 60 + sys_x86-64/___lstat_extended.s 61 + sys_x86-64/___mac_execve.s 62 + sys_x86-64/___mac_get_fd.s 63 + sys_x86-64/___mac_get_file.s 64 + sys_x86-64/___mac_get_link.s 65 + sys_x86-64/___mac_get_mount.s 66 + sys_x86-64/___mac_get_pid.s 67 + sys_x86-64/___mac_get_proc.s 68 + sys_x86-64/___mac_getfsstat.s 69 + sys_x86-64/___mac_mount.s 70 + sys_x86-64/___mac_set_fd.s 71 + sys_x86-64/___mac_set_file.s 72 + sys_x86-64/___mac_set_link.s 73 + sys_x86-64/___mac_set_proc.s 74 + sys_x86-64/___mac_syscall.s 75 + sys_x86-64/___microstackshot.s 76 + sys_x86-64/___mkdir_extended.s 77 + sys_x86-64/___mkfifo_extended.s 78 + sys_x86-64/___mmap.s 79 + sys_x86-64/___mprotect.s 80 + sys_x86-64/___msgctl.s 81 + sys_x86-64/___msgrcv_nocancel.s 82 + sys_x86-64/___msgsnd_nocancel.s 83 + sys_x86-64/___msgsys.s 84 + sys_x86-64/___msync.s 85 + sys_x86-64/___msync_nocancel.s 86 + sys_x86-64/___munmap.s 87 + sys_x86-64/___old_semwait_signal.s 88 + sys_x86-64/___open.s 89 + sys_x86-64/___open_dprotected_np.s 90 + sys_x86-64/___open_extended.s 91 + sys_x86-64/___open_nocancel.s 92 + sys_x86-64/___openat.s 93 + sys_x86-64/___openat_nocancel.s 94 + sys_x86-64/___persona.s 95 + sys_x86-64/___pipe.s 96 + sys_x86-64/___poll_nocancel.s 97 + sys_x86-64/___posix_spawn.s 98 + sys_x86-64/___pread_nocancel.s 99 + sys_x86-64/___proc_info.s 100 + sys_x86-64/___process_policy.s 101 + sys_x86-64/___pselect.s 102 + sys_x86-64/___pselect_nocancel.s 103 + sys_x86-64/___psynch_cvbroad.s 104 + sys_x86-64/___psynch_cvclrprepost.s 105 + sys_x86-64/___psynch_cvsignal.s 106 + sys_x86-64/___psynch_cvwait.s 107 + sys_x86-64/___psynch_mutexdrop.s 108 + sys_x86-64/___psynch_mutexwait.s 109 + sys_x86-64/___psynch_rw_downgrade.s 110 + sys_x86-64/___psynch_rw_longrdlock.s 111 + sys_x86-64/___psynch_rw_rdlock.s 112 + sys_x86-64/___psynch_rw_unlock.s 113 + sys_x86-64/___psynch_rw_unlock2.s 114 + sys_x86-64/___psynch_rw_upgrade.s 115 + sys_x86-64/___psynch_rw_wrlock.s 116 + sys_x86-64/___psynch_rw_yieldwrlock.s 117 + sys_x86-64/___pthread_canceled.s 118 + sys_x86-64/___pthread_chdir.s 119 + sys_x86-64/___pthread_fchdir.s 120 + sys_x86-64/___pthread_kill.s 121 + sys_x86-64/___pthread_markcancel.s 122 + sys_x86-64/___pthread_sigmask.s 123 + sys_x86-64/___ptrace.s 124 + sys_x86-64/___pwrite_nocancel.s 125 + sys_x86-64/___read_nocancel.s 126 + sys_x86-64/___readv_nocancel.s 127 + sys_x86-64/___recvfrom.s 128 + sys_x86-64/___recvfrom_nocancel.s 129 + sys_x86-64/___recvmsg.s 130 + sys_x86-64/___recvmsg_nocancel.s 131 + sys_x86-64/___rename.s 132 + sys_x86-64/___rename_ext.s 133 + sys_x86-64/___renameat.s 134 + sys_x86-64/___rmdir.s 135 + sys_x86-64/___select.s 136 + sys_x86-64/___select_nocancel.s 137 + sys_x86-64/___sem_open.s 138 + sys_x86-64/___sem_wait_nocancel.s 139 + sys_x86-64/___semctl.s 140 + sys_x86-64/___semsys.s 141 + sys_x86-64/___semwait_signal.s 142 + sys_x86-64/___semwait_signal_nocancel.s 143 + sys_x86-64/___sendmsg.s 144 + sys_x86-64/___sendmsg_nocancel.s 145 + sys_x86-64/___sendto.s 146 + sys_x86-64/___sendto_nocancel.s 147 + sys_x86-64/___setattrlist.s 148 + sys_x86-64/___setlogin.s 149 + sys_x86-64/___setpriority.s 150 + sys_x86-64/___setregid.s 151 + sys_x86-64/___setreuid.s 152 + sys_x86-64/___setrlimit.s 153 + sys_x86-64/___setsgroups.s 154 + sys_x86-64/___settid.s 155 + sys_x86-64/___settid_with_pid.s 156 + sys_x86-64/___settimeofday.s 157 + sys_x86-64/___setwgroups.s 158 + sys_x86-64/___sfi_ctl.s 159 + sys_x86-64/___sfi_pidctl.s 160 + sys_x86-64/___shared_region_check_np.s 161 + sys_x86-64/___shared_region_map_and_slide_np.s 162 + sys_x86-64/___shm_open.s 163 + sys_x86-64/___shmctl.s 164 + sys_x86-64/___shmsys.s 165 + sys_x86-64/___sigaction.s 166 + sys_x86-64/___sigaltstack.s 167 + sys_x86-64/___sigreturn.s 168 + sys_x86-64/___sigsuspend.s 169 + sys_x86-64/___sigsuspend_nocancel.s 170 + sys_x86-64/___sigwait.s 171 + sys_x86-64/___socketpair.s 172 + sys_x86-64/___stack_snapshot.s 173 + sys_x86-64/___stack_snapshot_with_config.s 174 + sys_x86-64/___stat64_extended.s 175 + sys_x86-64/___stat_extended.s 176 + sys_x86-64/___syscall.s 177 + sys_x86-64/___sysctl.s 178 + sys_x86-64/___sysctlbyname.s 179 + sys_x86-64/___telemetry.s 180 + sys_x86-64/___thread_selfid.s 181 + sys_x86-64/___thread_selfusage.s 182 + sys_x86-64/___umask_extended.s 183 + sys_x86-64/___unlink.s 184 + sys_x86-64/___unlinkat.s 185 + sys_x86-64/___vfork.s 186 + sys_x86-64/___wait4.s 187 + sys_x86-64/___wait4_nocancel.s 188 + sys_x86-64/___waitid_nocancel.s 189 + sys_x86-64/___work_interval_ctl.s 190 + sys_x86-64/___workq_kernreturn.s 191 + sys_x86-64/___workq_open.s 192 + sys_x86-64/___write_nocancel.s 193 + sys_x86-64/___writev_nocancel.s 194 + sys_x86-64/_access.s 195 + sys_x86-64/_acct.s 196 + sys_x86-64/_adjtime.s 197 + sys_x86-64/_aio_cancel.s 198 + sys_x86-64/_aio_error.s 199 + sys_x86-64/_aio_fsync.s 200 + sys_x86-64/_aio_read.s 201 + sys_x86-64/_aio_return.s 202 + sys_x86-64/_aio_suspend.s 203 + sys_x86-64/_aio_write.s 204 + sys_x86-64/_audit.s 205 + sys_x86-64/_audit_session_join.s 206 + sys_x86-64/_audit_session_port.s 207 + sys_x86-64/_audit_session_self.s 208 + sys_x86-64/_auditctl.s 209 + sys_x86-64/_auditon.s 210 + sys_x86-64/_change_fdguard_np.s 211 + sys_x86-64/_chdir.s 212 + sys_x86-64/_chflags.s 213 + sys_x86-64/_chown.s 214 + sys_x86-64/_chroot.s 215 + sys_x86-64/_close.s 216 + sys_x86-64/_connectx.s 217 + sys_x86-64/_csops.s 218 + sys_x86-64/_csops_audittoken.s 219 + sys_x86-64/_disconnectx.s 220 + sys_x86-64/_dup.s 221 + sys_x86-64/_dup2.s 222 + sys_x86-64/_exchangedata.s 223 + sys_x86-64/_execve.s 224 + sys_x86-64/_faccessat.s 225 + sys_x86-64/_fchdir.s 226 + sys_x86-64/_fchflags.s 227 + sys_x86-64/_fchmodat.s 228 + sys_x86-64/_fchown.s 229 + sys_x86-64/_fchownat.s 230 + sys_x86-64/_fdatasync.s 231 + sys_x86-64/_ffsctl.s 232 + sys_x86-64/_fgetattrlist.s 233 + sys_x86-64/_fgetxattr.s 234 + sys_x86-64/_fhopen.s 235 + sys_x86-64/_fileport_makefd.s 236 + sys_x86-64/_fileport_makeport.s 237 + sys_x86-64/_flistxattr.s 238 + sys_x86-64/_flock.s 239 + sys_x86-64/_fpathconf.s 240 + sys_x86-64/_fremovexattr.s 241 + sys_x86-64/_fsctl.s 242 + sys_x86-64/_fsetattrlist.s 243 + sys_x86-64/_fsetxattr.s 244 + sys_x86-64/_fstat.s 245 + sys_x86-64/_fstat64.s 246 + sys_x86-64/_fstatat.s 247 + sys_x86-64/_fstatat64.s 248 + sys_x86-64/_fstatfs.s 249 + sys_x86-64/_fstatfs64.s 250 + sys_x86-64/_fsync.s 251 + sys_x86-64/_ftruncate.s 252 + sys_x86-64/_futimes.s 253 + sys_x86-64/_getattrlistat.s 254 + sys_x86-64/_getattrlistbulk.s 255 + sys_x86-64/_getaudit_addr.s 256 + sys_x86-64/_getauid.s 257 + sys_x86-64/_getdirentries.s 258 + sys_x86-64/_getdirentriesattr.s 259 + sys_x86-64/_getdtablesize.s 260 + sys_x86-64/_getegid.s 261 + sys_x86-64/_geteuid.s 262 + sys_x86-64/_getfh.s 263 + sys_x86-64/_getfsstat.s 264 + sys_x86-64/_getfsstat64.s 265 + sys_x86-64/_getgid.s 266 + sys_x86-64/_getgroups.s 267 + sys_x86-64/_getitimer.s 268 + sys_x86-64/_getpgid.s 269 + sys_x86-64/_getpgrp.s 270 + sys_x86-64/_getppid.s 271 + sys_x86-64/_getpriority.s 272 + sys_x86-64/_getrusage.s 273 + sys_x86-64/_getsid.s 274 + sys_x86-64/_getsockopt.s 275 + sys_x86-64/_getuid.s 276 + sys_x86-64/_getxattr.s 277 + sys_x86-64/_grab_pgo_data.s 278 + sys_x86-64/_guarded_close_np.s 279 + sys_x86-64/_guarded_kqueue_np.s 280 + sys_x86-64/_guarded_pwrite_np.s 281 + sys_x86-64/_guarded_write_np.s 282 + sys_x86-64/_guarded_writev_np.s 283 + sys_x86-64/_issetugid.s 284 + sys_x86-64/_kas_info.s 285 + sys_x86-64/_kevent.s 286 + sys_x86-64/_kevent64.s 287 + sys_x86-64/_kevent_qos.s 288 + sys_x86-64/_kqueue.s 289 + sys_x86-64/_ledger.s 290 + sys_x86-64/_link.s 291 + sys_x86-64/_linkat.s 292 + sys_x86-64/_lio_listio.s 293 + sys_x86-64/_listxattr.s 294 + sys_x86-64/_lstat.s 295 + sys_x86-64/_lstat64.s 296 + sys_x86-64/_madvise.s 297 + sys_x86-64/_memorystatus_control.s 298 + sys_x86-64/_memorystatus_get_level.s 299 + sys_x86-64/_mincore.s 300 + sys_x86-64/_minherit.s 301 + sys_x86-64/_mkdir.s 302 + sys_x86-64/_mkdirat.s 303 + sys_x86-64/_mkfifo.s 304 + sys_x86-64/_mknod.s 305 + sys_x86-64/_mlock.s 306 + sys_x86-64/_mlockall.s 307 + sys_x86-64/_modwatch.s 308 + sys_x86-64/_mount.s 309 + sys_x86-64/_mremap_encrypted.s 310 + sys_x86-64/_msgget.s 311 + sys_x86-64/_msgrcv.s 312 + sys_x86-64/_msgsnd.s 313 + sys_x86-64/_munlock.s 314 + sys_x86-64/_munlockall.s 315 + sys_x86-64/_necp_match_policy.s 316 + sys_x86-64/_netagent_trigger.s 317 + sys_x86-64/_nfsclnt.s 318 + sys_x86-64/_nfssvc.s 319 + sys_x86-64/_openbyid_np.s 320 + sys_x86-64/_pathconf.s 321 + sys_x86-64/_peeloff.s 322 + sys_x86-64/_pid_resume.s 323 + sys_x86-64/_pid_suspend.s 324 + sys_x86-64/_poll.s 325 + sys_x86-64/_pread.s 326 + sys_x86-64/_proc_rlimit_control.s 327 + sys_x86-64/_proc_trace_log.s 328 + sys_x86-64/_proc_uuid_policy.s 329 + sys_x86-64/_pwrite.s 330 + sys_x86-64/_quota.s 331 + sys_x86-64/_quotactl.s 332 + sys_x86-64/_read.s 333 + sys_x86-64/_readlink.s 334 + sys_x86-64/_readlinkat.s 335 + sys_x86-64/_readv.s 336 + sys_x86-64/_reboot.s 337 + sys_x86-64/_recvmsg_x.s 338 + sys_x86-64/_removexattr.s 339 + sys_x86-64/_revoke.s 340 + sys_x86-64/_searchfs.s 341 + sys_x86-64/_sem_close.s 342 + sys_x86-64/_sem_post.s 343 + sys_x86-64/_sem_trywait.s 344 + sys_x86-64/_sem_unlink.s 345 + sys_x86-64/_sem_wait.s 346 + sys_x86-64/_semget.s 347 + sys_x86-64/_semop.s 348 + sys_x86-64/_sendfile.s 349 + sys_x86-64/_sendmsg_x.s 350 + sys_x86-64/_setaudit_addr.s 351 + sys_x86-64/_setauid.s 352 + sys_x86-64/_setegid.s 353 + sys_x86-64/_seteuid.s 354 + sys_x86-64/_setgid.s 355 + sys_x86-64/_setgroups.s 356 + sys_x86-64/_setitimer.s 357 + sys_x86-64/_setpgid.s 358 + sys_x86-64/_setprivexec.s 359 + sys_x86-64/_setquota.s 360 + sys_x86-64/_setsid.s 361 + sys_x86-64/_setsockopt.s 362 + sys_x86-64/_setuid.s 363 + sys_x86-64/_setxattr.s 364 + sys_x86-64/_shm_unlink.s 365 + sys_x86-64/_shmat.s 366 + sys_x86-64/_shmdt.s 367 + sys_x86-64/_shmget.s 368 + sys_x86-64/_shutdown.s 369 + sys_x86-64/_sigpending.s 370 + sys_x86-64/_sigprocmask.s 371 + sys_x86-64/_socket.s 372 + sys_x86-64/_socket_delegate.s 373 + sys_x86-64/_stat.s 374 + sys_x86-64/_stat64.s 375 + sys_x86-64/_statfs.s 376 + sys_x86-64/_statfs64.s 377 + sys_x86-64/_swapon.s 378 + sys_x86-64/_symlink.s 379 + sys_x86-64/_symlinkat.s 380 + sys_x86-64/_sync.s 381 + sys_x86-64/_system_override.s 382 + sys_x86-64/_truncate.s 383 + sys_x86-64/_umask.s 384 + sys_x86-64/_undelete.s 385 + sys_x86-64/_unmount.s 386 + sys_x86-64/_usrctl.s 387 + sys_x86-64/_utimes.s 388 + sys_x86-64/_vfs_purge.s 389 + sys_x86-64/_vm_pressure_monitor.s 390 + sys_x86-64/_waitevent.s 391 + sys_x86-64/_waitid.s 392 + sys_x86-64/_watchevent.s 393 + sys_x86-64/_write.s 394 + sys_x86-64/_writev.s 395 + sys_x86-64/custom.s
+1 -1
src/kernel/libsyscall/sys_x86-64/swapon.S src/kernel/libsyscall/sys_x86-64/_swapon.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(swapon, swapon, 0, cerror_nocancel) 9 + __SYSCALL2(_swapon, swapon, 0, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/symlink.S src/kernel/libsyscall/sys_x86-64/_symlink.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(symlink, symlink, 2, cerror) 9 + __SYSCALL2(_symlink, symlink, 2, cerror) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/symlinkat.S src/kernel/libsyscall/sys_x86-64/_symlinkat.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(symlinkat, symlinkat, 3, cerror) 9 + __SYSCALL2(_symlinkat, symlinkat, 3, cerror) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/sync.S src/kernel/libsyscall/sys_x86-64/_sync.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(sync, sync, 0, cerror) 9 + __SYSCALL2(_sync, sync, 0, cerror) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/system_override.S src/kernel/libsyscall/sys_x86-64/_system_override.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(system_override, system_override, 2, cerror_nocancel) 9 + __SYSCALL2(_system_override, system_override, 2, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/truncate.S src/kernel/libsyscall/sys_x86-64/_truncate.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(truncate, truncate, 2, cerror_nocancel) 9 + __SYSCALL2(_truncate, truncate, 2, cerror_nocancel) 10 10 #endif 11 11
src/kernel/libsyscall/sys_x86-64/truncate.o

This is a binary file and will not be displayed.

+1 -1
src/kernel/libsyscall/sys_x86-64/umask.S src/kernel/libsyscall/sys_x86-64/_umask.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(umask, umask, 1, cerror_nocancel) 9 + __SYSCALL2(_umask, umask, 1, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/undelete.S src/kernel/libsyscall/sys_x86-64/_undelete.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(undelete, undelete, 1, cerror_nocancel) 9 + __SYSCALL2(_undelete, undelete, 1, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/unmount.S src/kernel/libsyscall/sys_x86-64/_unmount.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(unmount, unmount, 2, cerror_nocancel) 9 + __SYSCALL2(_unmount, unmount, 2, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/utimes.S src/kernel/libsyscall/sys_x86-64/_utimes.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(utimes, utimes, 2, cerror_nocancel) 9 + __SYSCALL2(_utimes, utimes, 2, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/vfs_purge.S src/kernel/libsyscall/sys_x86-64/_vfs_purge.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(vfs_purge, vfs_purge, 0, cerror_nocancel) 9 + __SYSCALL2(_vfs_purge, vfs_purge, 0, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/vm_pressure_monitor.S src/kernel/libsyscall/sys_x86-64/_vm_pressure_monitor.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(vm_pressure_monitor, vm_pressure_monitor, 3, cerror_nocancel) 9 + __SYSCALL2(_vm_pressure_monitor, vm_pressure_monitor, 3, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/waitevent.S src/kernel/libsyscall/sys_x86-64/_waitevent.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(waitevent, waitevent, 2, cerror_nocancel) 9 + __SYSCALL2(_waitevent, waitevent, 2, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/waitid.S src/kernel/libsyscall/sys_x86-64/_waitid.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(waitid, waitid, 4, cerror) 9 + __SYSCALL2(_waitid, waitid, 4, cerror) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/watchevent.S src/kernel/libsyscall/sys_x86-64/_watchevent.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(watchevent, watchevent, 2, cerror_nocancel) 9 + __SYSCALL2(_watchevent, watchevent, 2, cerror_nocancel) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/write.S src/kernel/libsyscall/sys_x86-64/_write.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(write, write, 3, cerror) 9 + __SYSCALL2(_write, write, 3, cerror) 10 10 #endif 11 11
+1 -1
src/kernel/libsyscall/sys_x86-64/writev.S src/kernel/libsyscall/sys_x86-64/_writev.S
··· 6 6 #endif 7 7 8 8 #if defined(__x86_64__) 9 - __SYSCALL2(writev, writev, 3, cerror) 9 + __SYSCALL2(_writev, writev, 3, cerror) 10 10 #endif 11 11
+7 -9
src/kernel/libsyscall/xcodescripts/create-syscalls.pl
··· 1 1 #!/usr/bin/perl 2 - # Modified by Lubos Dolezel for Darling (remove 1 underscore from symbols) 3 2 # 4 3 # Copyright (c) 2006-2014 Apple Inc. All rights reserved. 5 4 # ··· 62 61 # size in bytes of known types (only used for i386) 63 62 my %TypeBytes = ( 64 63 'au_asid_t' => 4, 65 - 'associd_t' => 4, 64 + 'sae_associd_t' => 4, 66 65 'caddr_t' => 4, 67 - 'connid_t' => 4, 66 + 'sae_connid_t' => 4, 68 67 'gid_t' => 4, 69 68 'id_t' => 4, 70 69 'idtype_t' => 4, ··· 101 100 "quota" => { 102 101 c_sym => "quota", 103 102 syscall => "quota", 104 - asm_sym => "quota", 103 + asm_sym => "_quota", 105 104 is_private => undef, 106 105 is_custom => undef, 107 106 nargs => 4, ··· 111 110 "setquota" => { 112 111 c_sym => "setquota", 113 112 syscall => "setquota", 114 - asm_sym => "setquota", 113 + asm_sym => "_setquota", 115 114 is_private => undef, 116 115 is_custom => undef, 117 116 nargs => 2, ··· 121 120 "syscall" => { 122 121 c_sym => "syscall", 123 122 syscall => "syscall", 124 - asm_sym => "syscall", 123 + asm_sym => "_syscall", 125 124 is_private => undef, 126 125 is_custom => undef, 127 126 nargs => 0, ··· 218 217 $Symbols{$name} = { 219 218 c_sym => $name, 220 219 syscall => $name, 221 - asm_sym => $no_syscall_stub ? "__$name" : "$name", 220 + asm_sym => $no_syscall_stub ? "___$name" : "_$name", 222 221 is_private => $no_syscall_stub, 223 222 is_custom => undef, 224 223 nargs => $nargs, ··· 331 330 332 331 print $f "#define __SYSCALL_32BIT_ARG_BYTES $$symbol{bytes}\n"; 333 332 print $f "#include \"SYS.h\"\n\n"; 334 - 335 333 if (scalar(@conditions)) { 336 334 printf $f "#ifndef SYS_%s\n", $$symbol{syscall}; 337 335 printf $f "#error \"SYS_%s not defined. The header files libsyscall is building against do not match syscalls.master.\"\n", $$symbol{syscall}; ··· 364 362 my $sym = (grep { $_ eq $arch } @{$$symbol{except}}) ? "__".$$symbol{asm_sym} : $$symbol{asm_sym}; 365 363 366 364 printf $f "\t.globl\t$alias_sym\n"; 367 - printf $f "\t\t$alias_sym = $sym\n"; 365 + printf $f "\t.set\t$alias_sym, $sym\n"; 368 366 } 369 367 printf $f "#endif\n\n"; 370 368 }
+36 -17
src/kernel/libsyscall/xcodescripts/syscalls.master
··· 266 266 175 AUE_NULL ALL { int nosys(void); } { old gc_control } 267 267 176 AUE_NULL ALL { int nosys(void); } { old add_profil } 268 268 177 AUE_NULL ALL { int nosys(void); } 269 - 178 AUE_NULL ALL { int nosys(void); } 270 - 179 AUE_NULL ALL { int nosys(void); } 271 - 180 AUE_KDEBUGTRACE ALL { int kdebug_trace(int code, int arg1, int arg2, int arg3, int arg4, int arg5) NO_SYSCALL_STUB; } 269 + 178 AUE_KDEBUGTRACE ALL { uint64_t kdebug_trace_string(uint32_t debugid, uint64_t str_id, const char *str) NO_SYSCALL_STUB; } 270 + 179 AUE_KDEBUGTRACE ALL { int kdebug_trace64(uint32_t code, uint64_t arg1, uint64_t arg2, uint64_t arg3, uint64_t arg4) NO_SYSCALL_STUB; } 271 + 180 AUE_KDEBUGTRACE ALL { int kdebug_trace(uint32_t code, u_long arg1, u_long arg2, u_long arg3, u_long arg4) NO_SYSCALL_STUB; } 272 272 181 AUE_SETGID ALL { int setgid(gid_t gid); } 273 273 182 AUE_SETEGID ALL { int setegid(gid_t egid); } 274 274 183 AUE_SETEUID ALL { int seteuid(uid_t euid); } ··· 567 567 #endif 568 568 372 AUE_NULL ALL { uint64_t thread_selfid (void) NO_SYSCALL_STUB; } 569 569 373 AUE_LEDGER ALL { int ledger(int cmd, caddr_t arg1, caddr_t arg2, caddr_t arg3); } 570 - 374 AUE_NULL ALL { int nosys(void); } 570 + 374 AUE_NULL ALL { int kevent_qos(int fd, const struct kevent_qos_s *changelist, int nchanges, struct kevent_qos_s *eventlist, int nevents, void *data_out, size_t *data_available, unsigned int flags); } 571 571 375 AUE_NULL ALL { int nosys(void); } 572 572 376 AUE_NULL ALL { int nosys(void); } 573 573 377 AUE_NULL ALL { int nosys(void); } ··· 585 585 388 AUE_MAC_GET_FD ALL { int __mac_get_fd(int fd, struct mac *mac_p); } 586 586 389 AUE_MAC_SET_FD ALL { int __mac_set_fd(int fd, struct mac *mac_p); } 587 587 390 AUE_MAC_GET_PID ALL { int __mac_get_pid(pid_t pid, struct mac *mac_p); } 588 - 391 AUE_MAC_GET_LCID ALL { int __mac_get_lcid(pid_t lcid, struct mac *mac_p); } 589 - 392 AUE_MAC_GET_LCTX ALL { int __mac_get_lctx(struct mac *mac_p); } 590 - 393 AUE_MAC_SET_LCTX ALL { int __mac_set_lctx(struct mac *mac_p); } 591 588 #else 592 589 381 AUE_MAC_SYSCALL ALL { int enosys(void); } 593 590 382 AUE_MAC_GET_FILE ALL { int nosys(void); } ··· 599 596 388 AUE_MAC_GET_FD ALL { int nosys(void); } 600 597 389 AUE_MAC_SET_FD ALL { int nosys(void); } 601 598 390 AUE_MAC_GET_PID ALL { int nosys(void); } 602 - 391 AUE_MAC_GET_LCID ALL { int nosys(void); } 603 - 392 AUE_MAC_GET_LCTX ALL { int nosys(void); } 604 - 393 AUE_MAC_SET_LCTX ALL { int nosys(void); } 605 599 #endif 606 - 394 AUE_SETLCID ALL { int setlcid(pid_t pid, pid_t lcid) NO_SYSCALL_STUB; } 607 - 395 AUE_GETLCID ALL { int getlcid(pid_t pid) NO_SYSCALL_STUB; } 600 + 391 AUE_NULL ALL { int enosys(void); } 601 + 392 AUE_NULL ALL { int enosys(void); } 602 + 393 AUE_NULL ALL { int enosys(void); } 603 + 394 AUE_SELECT ALL { int pselect(int nd, u_int32_t *in, u_int32_t *ou, u_int32_t *ex, const struct timespec *ts, const struct sigset_t *mask) NO_SYSCALL_STUB; } 604 + 395 AUE_SELECT ALL { int pselect_nocancel(int nd, u_int32_t *in, u_int32_t *ou, u_int32_t *ex, const struct timespec *ts, const struct sigset_t *mask) NO_SYSCALL_STUB; } 608 605 396 AUE_NULL ALL { user_ssize_t read_nocancel(int fd, user_addr_t cbuf, user_size_t nbyte) NO_SYSCALL_STUB; } 609 606 397 AUE_NULL ALL { user_ssize_t write_nocancel(int fd, user_addr_t cbuf, user_size_t nbyte) NO_SYSCALL_STUB; } 610 607 398 AUE_OPEN_RWTC ALL { int open_nocancel(user_addr_t path, int flags, int mode) NO_SYSCALL_STUB; } ··· 686 683 442 AUE_CLOSE ALL { int guarded_close_np(int fd, const guardid_t *guard); } 687 684 443 AUE_KQUEUE ALL { int guarded_kqueue_np(const guardid_t *guard, u_int guardflags); } 688 685 444 AUE_NULL ALL { int change_fdguard_np(int fd, const guardid_t *guard, u_int guardflags, const guardid_t *nguard, u_int nguardflags, int *fdflagsp); } 689 - 445 AUE_NULL ALL { int nosys(void); } { old __proc_suppress } 686 + 445 AUE_USRCTL ALL { int usrctl(uint32_t flags); } 690 687 446 AUE_NULL ALL { int proc_rlimit_control(pid_t pid, int flavor, void *arg); } 691 688 #if SOCKETS 692 - 447 AUE_CONNECT ALL { int connectx(int s, struct sockaddr *src, socklen_t srclen, struct sockaddr *dsts, socklen_t dstlen, uint32_t ifscope, associd_t aid, connid_t *cid); } 693 - 448 AUE_NULL ALL { int disconnectx(int s, associd_t aid, connid_t cid); } 694 - 449 AUE_NULL ALL { int peeloff(int s, associd_t aid); } 689 + 447 AUE_CONNECT ALL { int connectx(int socket, const sa_endpoints_t *endpoints, sae_associd_t associd, unsigned int flags, const struct iovec *iov, unsigned int iovcnt, size_t *len, sae_connid_t *connid); } 690 + 448 AUE_NULL ALL { int disconnectx(int s, sae_associd_t aid, sae_connid_t cid); } 691 + 449 AUE_NULL ALL { int peeloff(int s, sae_associd_t aid); } 695 692 450 AUE_SOCKET ALL { int socket_delegate(int domain, int type, int protocol, pid_t epid); } 696 693 #else 697 694 447 AUE_NULL ALL { int nosys(void); } ··· 761 758 484 AUE_NULL ALL { int guarded_open_dprotected_np(const char *path, const guardid_t *guard, u_int guardflags, int flags, int dpclass, int dpflags, int mode) NO_SYSCALL_STUB; } 762 759 485 AUE_NULL ALL { user_ssize_t guarded_write_np(int fd, const guardid_t *guard, user_addr_t cbuf, user_size_t nbyte); } 763 760 486 AUE_PWRITE ALL { user_ssize_t guarded_pwrite_np(int fd, const guardid_t *guard, user_addr_t buf, user_size_t nbyte, off_t offset); } 764 - 487 AUE_WRITEV ALL { user_ssize_t guarded_writev_np(int fd, const guardid_t *guard, struct iovec *iovp, u_int iovcnt); } 761 + 487 AUE_WRITEV ALL { user_ssize_t guarded_writev_np(int fd, const guardid_t *guard, struct iovec *iovp, int iovcnt); } 765 762 #if CONFIG_SECLUDED_RENAME 766 763 488 AUE_RENAME ALL { int rename_ext(char *from, char *to, u_int flags) NO_SYSCALL_STUB; } 767 764 #else ··· 772 769 #else 773 770 489 AUE_NULL ALL { int enosys(void); } 774 771 #endif 772 + #if NETWORKING 773 + 490 AUE_NULL ALL { int netagent_trigger(uuid_t agent_uuid, size_t agent_uuidlen); } 774 + #else 775 + 490 AUE_NULL ALL { int nosys(void); } 776 + #endif /* NETWORKING */ 777 + 491 AUE_STACKSNAPSHOT ALL { int stack_snapshot_with_config(int stackshot_config_version, user_addr_t stackshot_config, size_t stackshot_config_size) NO_SYSCALL_STUB; } 778 + #if CONFIG_TELEMETRY 779 + 492 AUE_STACKSNAPSHOT ALL { int microstackshot(user_addr_t tracebuf, uint32_t tracebuf_size, uint32_t flags) NO_SYSCALL_STUB; } 780 + #else 781 + 492 AUE_NULL ALL { int enosys(void); } 782 + #endif /* CONFIG_TELEMETRY */ 783 + 493 AUE_NULL ALL { user_ssize_t grab_pgo_data (user_addr_t uuid, int flags, user_addr_t buffer, user_ssize_t size); } 784 + #if CONFIG_PERSONAS 785 + 494 AUE_PERSONA ALL { int persona(uint32_t operation, uint32_t flags, struct kpersona_info *info, uid_t *id, size_t *idlen) NO_SYSCALL_STUB; } 786 + #else 787 + 494 AUE_NULL ALL { int enosys(void); } 788 + #endif 789 + 495 AUE_NULL ALL { int enosys(void); } 790 + 496 AUE_NULL ALL { int enosys(void); } 791 + 497 AUE_NULL ALL { int enosys(void); } 792 + 498 AUE_NULL ALL { int enosys(void); } 793 + 499 AUE_NULL ALL { int work_interval_ctl(uint32_t operation, uint64_t work_interval_id, void *arg, size_t len) NO_SYSCALL_STUB; }
+1 -1
src/libc/CMakeLists.txt
··· 104 104 SET(CMAKE_BUILD_WITH_INSTALL_RPATH TRUE) 105 105 SET(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE) 106 106 107 - add_library(system_c SHARED 107 + add_darling_library(system_c SHARED 108 108 $<TARGET_OBJECTS:libc-db> 109 109 $<TARGET_OBJECTS:libc-compat> 110 110 $<TARGET_OBJECTS:libc-compat_cancelable>
+1 -1
src/libc/include/sys/cdefs.h
··· 89 89 /* 90 90 * symbol versioning macros 91 91 */ 92 - #ifndef DARLING 92 + #ifndef DARLING__DISABLED 93 93 #define LIBC_ALIAS(sym) __asm("_" __STRING(sym) LIBC_SUF_UNIX03) 94 94 #define LIBC_ALIAS_C(sym) __asm("_" __STRING(sym) LIBC_SUF_NON_CANCELABLE LIBC_SUF_UNIX03) 95 95 #define LIBC_ALIAS_I(sym) __asm("_" __STRING(sym) LIBC_SUF_64_BIT_INO_T LIBC_SUF_UNIX03)