this repo has no description
1
fork

Configure Feed

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

[kernel/libsyscall] Generate bsdsyscalls using xnu-7195.141.2 files

Thomas A 653d430d fc97b2ad

+11778
+525
src/kernel/libsyscall/bsdsyscalls/SYS.h
··· 1 + /* 2 + * Copyright (c) 1999-2011 Apple Inc. All rights reserved. 3 + * 4 + * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ 5 + * 6 + * This file contains Original Code and/or Modifications of Original Code 7 + * as defined in and that are subject to the Apple Public Source License 8 + * Version 2.0 (the 'License'). You may not use this file except in 9 + * compliance with the License. The rights granted to you under the License 10 + * may not be used to create, or enable the creation or redistribution of, 11 + * unlawful or unlicensed copies of an Apple operating system, or to 12 + * circumvent, violate, or enable the circumvention or violation of, any 13 + * terms of an Apple operating system software license agreement. 14 + * 15 + * Please obtain a copy of the License at 16 + * http://www.opensource.apple.com/apsl/ and read it before using this file. 17 + * 18 + * The Original Code and all software distributed under the License are 19 + * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 20 + * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, 21 + * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, 22 + * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 23 + * Please see the License for the specific language governing rights and 24 + * limitations under the License. 25 + * 26 + * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ 27 + */ 28 + /* Copyright (c) 1992 NeXT Computer, Inc. All rights reserved. 29 + * 30 + * File: SYS.h 31 + * 32 + * Definition of the user side of the UNIX system call interface 33 + * for M98K. 34 + * 35 + * Errors are flagged by the location of the trap return (ie., which 36 + * instruction is executed upon rfi): 37 + * 38 + * SC PC + 4: Error (typically branch to cerror()) 39 + * SC PC + 8: Success 40 + * 41 + * HISTORY 42 + * 18-Nov-92 Ben Fathi (benf@next.com) 43 + * Ported to m98k. 44 + * 45 + * 9-Jan-92 Peter King (king@next.com) 46 + * Created. 47 + */ 48 + 49 + #include <sys/syscall.h> 50 + 51 + #if defined(__i386__) 52 + 53 + #include <architecture/i386/asm_help.h> 54 + #include <mach/i386/syscall_sw.h> 55 + 56 + /* 57 + * We have two entry points. int's is used for syscalls which need to preserve 58 + * %ecx across the call, or return a 64-bit value in %eax:%edx. sysenter is used 59 + * for the majority of syscalls which just return a value in %eax. 60 + */ 61 + 62 + #ifdef DARLING 63 + #define UNIX_SYSCALL_SYSENTER call __darling_bsd_syscall 64 + #else 65 + #define UNIX_SYSCALL_SYSENTER call __sysenter_trap 66 + #endif 67 + #define UNIX_SYSCALL(name, nargs) \ 68 + .globl tramp_cerror ;\ 69 + LEAF(_##name, 0) ;\ 70 + movl $ SYS_##name, %eax ;\ 71 + UNIX_SYSCALL_SYSENTER ;\ 72 + jnb 2f ;\ 73 + BRANCH_EXTERN(tramp_cerror) ;\ 74 + 2: 75 + 76 + #define UNIX_SYSCALL_INT(name, nargs) \ 77 + .globl tramp_cerror ;\ 78 + LEAF(_##name, 0) ;\ 79 + movl $ SYS_##name, %eax ;\ 80 + UNIX_SYSCALL_TRAP ;\ 81 + jnb 2f ;\ 82 + BRANCH_EXTERN(tramp_cerror) ;\ 83 + 2: 84 + 85 + #if defined(__SYSCALL_32BIT_ARG_BYTES) && ((__SYSCALL_32BIT_ARG_BYTES >= 4) && (__SYSCALL_32BIT_ARG_BYTES <= 20)) 86 + #define UNIX_SYSCALL_NONAME(name, nargs, cerror) \ 87 + movl $(SYS_##name | (__SYSCALL_32BIT_ARG_BYTES << I386_SYSCALL_ARG_BYTES_SHIFT)), %eax ;\ 88 + UNIX_SYSCALL_SYSENTER ;\ 89 + jnb 2f ;\ 90 + BRANCH_EXTERN(tramp_##cerror) ;\ 91 + 2: 92 + #else /* __SYSCALL_32BIT_ARG_BYTES < 4 || > 20 */ 93 + #define UNIX_SYSCALL_NONAME(name, nargs, cerror) \ 94 + movl $ SYS_##name, %eax ;\ 95 + UNIX_SYSCALL_SYSENTER ;\ 96 + jnb 2f ;\ 97 + BRANCH_EXTERN(tramp_##cerror) ;\ 98 + 2: 99 + #endif 100 + 101 + #define UNIX_SYSCALL_INT_NONAME(name, nargs) \ 102 + .globl tramp_cerror_nocancel ;\ 103 + movl $ SYS_##name, %eax ;\ 104 + UNIX_SYSCALL_TRAP ;\ 105 + jnb 2f ;\ 106 + BRANCH_EXTERN(tramp_cerror_nocancel) ;\ 107 + 2: 108 + 109 + #define PSEUDO(pseudo, name, nargs, cerror) \ 110 + LEAF(pseudo, 0) ;\ 111 + UNIX_SYSCALL_NONAME(name, nargs, cerror) 112 + 113 + #define PSEUDO_INT(pseudo, name, nargs) \ 114 + LEAF(pseudo, 0) ;\ 115 + UNIX_SYSCALL_INT_NONAME(name, nargs) 116 + 117 + #define __SYSCALL2(pseudo, name, nargs, cerror) \ 118 + PSEUDO(pseudo, name, nargs, cerror) ;\ 119 + ret 120 + 121 + #define __SYSCALL(pseudo, name, nargs) \ 122 + PSEUDO(pseudo, name, nargs, cerror) ;\ 123 + ret 124 + 125 + #define __SYSCALL_INT(pseudo, name, nargs) \ 126 + PSEUDO_INT(pseudo, name, nargs) ;\ 127 + ret 128 + 129 + #elif defined(__x86_64__) 130 + 131 + #include <architecture/i386/asm_help.h> 132 + #include <mach/i386/syscall_sw.h> 133 + 134 + #ifdef DARLING 135 + #define UNIX_SYSCALL(name, nargs) \ 136 + .globl cerror ;\ 137 + LEAF(_#name, 0) ;\ 138 + movl $ SYS_##name, %eax ;\ 139 + call __darling_bsd_syscall ;\ 140 + cmpq $-4095, %rax ;\ 141 + jb 2f ;\ 142 + movq %rax, %rdi ;\ 143 + negq %rdi ;\ 144 + BRANCH_EXTERN(_cerror) ;\ 145 + 2: 146 + 147 + #define UNIX_SYSCALL_NONAME(name, nargs, cerror) \ 148 + .globl cerror ;\ 149 + movl $ SYS_##name, %eax ;\ 150 + call __darling_bsd_syscall ;\ 151 + cmpq $-4095, %rax ;\ 152 + jb 2f ;\ 153 + movq %rax, %rdi ;\ 154 + negq %rdi ;\ 155 + BRANCH_EXTERN(_##cerror) ;\ 156 + 2: 157 + #else 158 + #define UNIX_SYSCALL_SYSCALL \ 159 + movq %rcx, %r10 ;\ 160 + syscall 161 + 162 + #define UNIX_SYSCALL(name, nargs) \ 163 + .globl cerror ;\ 164 + LEAF(_##name, 0) ;\ 165 + movl $ SYSCALL_CONSTRUCT_UNIX(SYS_##name), %eax ;\ 166 + UNIX_SYSCALL_SYSCALL ;\ 167 + jnb 2f ;\ 168 + movq %rax, %rdi ;\ 169 + BRANCH_EXTERN(_cerror) ;\ 170 + 2: 171 + 172 + #define UNIX_SYSCALL_NONAME(name, nargs, cerror) \ 173 + .globl cerror ;\ 174 + movl $ SYSCALL_CONSTRUCT_UNIX(SYS_##name), %eax ;\ 175 + UNIX_SYSCALL_SYSCALL ;\ 176 + jnb 2f ;\ 177 + movq %rax, %rdi ;\ 178 + BRANCH_EXTERN(_##cerror) ;\ 179 + 2: 180 + #endif 181 + 182 + #define PSEUDO(pseudo, name, nargs, cerror) \ 183 + LEAF(pseudo, 0) ;\ 184 + UNIX_SYSCALL_NONAME(name, nargs, cerror) 185 + 186 + #define __SYSCALL2(pseudo, name, nargs, cerror) \ 187 + PSEUDO(pseudo, name, nargs, cerror) ;\ 188 + ret 189 + 190 + #define __SYSCALL(pseudo, name, nargs) \ 191 + PSEUDO(pseudo, name, nargs, cerror) ;\ 192 + ret 193 + 194 + #elif defined(__arm__) 195 + 196 + #include <architecture/arm/asm_help.h> 197 + #include <mach/arm/syscall_sw.h> 198 + 199 + /* 200 + * ARM system call interface: 201 + * 202 + * swi 0x80 203 + * args: r0-r6 204 + * return code: r0 205 + * on error, carry bit is set in the psr, otherwise carry bit is cleared. 206 + */ 207 + 208 + /* 209 + * Macros. 210 + */ 211 + 212 + /* 213 + * until we update the architecture project, these live here 214 + */ 215 + 216 + #if defined(__DYNAMIC__) 217 + #define MI_GET_ADDRESS(reg,var) \ 218 + ldr reg, 4f ;\ 219 + 3: ldr reg, [pc, reg] ;\ 220 + b 5f ;\ 221 + 4: .long 6f - (3b + 8) ;\ 222 + 5: ;\ 223 + .non_lazy_symbol_pointer ;\ 224 + 6: ;\ 225 + .indirect_symbol var ;\ 226 + .long 0 ;\ 227 + .text ;\ 228 + .align 2 229 + #else 230 + #define MI_GET_ADDRESS(reg,var) \ 231 + ldr reg, 3f ;\ 232 + b 4f ;\ 233 + 3: .long var ;\ 234 + 4: 235 + #endif 236 + 237 + #if defined(__DYNAMIC__) 238 + #define MI_BRANCH_EXTERNAL(var) \ 239 + .globl var ;\ 240 + MI_GET_ADDRESS(ip, var) ;\ 241 + bx ip 242 + #else 243 + #define MI_BRANCH_EXTERNAL(var) ;\ 244 + .globl var ;\ 245 + b var 246 + #endif 247 + 248 + #if defined(__DYNAMIC__) 249 + #define MI_CALL_EXTERNAL(var) \ 250 + .globl var ;\ 251 + MI_GET_ADDRESS(ip,var) ;\ 252 + blx ip 253 + #else 254 + #define MI_CALL_EXTERNAL(var) \ 255 + .globl var ;\ 256 + bl var 257 + #endif 258 + 259 + #define MI_ENTRY_POINT(name) \ 260 + .text ;\ 261 + .align 2 ;\ 262 + .globl name ;\ 263 + name: 264 + 265 + /* load the syscall number into r12 and trap */ 266 + #define DO_SYSCALL(num) \ 267 + .if (((num) & 0xff) == (num)) ;\ 268 + mov r12, #(num) ;\ 269 + .elseif (((num) & 0x3fc) == (num)) ;\ 270 + mov r12, #(num) ;\ 271 + .else ;\ 272 + mov r12, #((num) & 0xffffff00) /* top half of the syscall number */ ;\ 273 + orr r12, r12, #((num) & 0xff) /* bottom half */ ;\ 274 + .endif ;\ 275 + swi #SWI_SYSCALL 276 + 277 + /* simple syscalls (0 to 4 args) */ 278 + #define SYSCALL_0to4(name, cerror) \ 279 + MI_ENTRY_POINT(_##name) ;\ 280 + DO_SYSCALL(SYS_##name) ;\ 281 + bxcc lr /* return if carry is clear (no error) */ ; \ 282 + 1: MI_BRANCH_EXTERNAL(_##cerror) 283 + 284 + /* syscalls with 5 args is different, because of the single arg register load */ 285 + #define SYSCALL_5(name, cerror) \ 286 + MI_ENTRY_POINT(_##name) ;\ 287 + mov ip, sp /* save a pointer to the args */ ; \ 288 + stmfd sp!, { r4-r5 } /* save r4-r5 */ ;\ 289 + ldr r4, [ip] /* load 5th arg */ ; \ 290 + DO_SYSCALL(SYS_##name) ;\ 291 + ldmfd sp!, { r4-r5 } /* restore r4-r5 */ ; \ 292 + bxcc lr /* return if carry is clear (no error) */ ; \ 293 + 1: MI_BRANCH_EXTERNAL(_##cerror) 294 + 295 + /* syscalls with 6 to 12 args. kernel may have to read from stack */ 296 + #define SYSCALL_6to12(name, save_regs, arg_regs, cerror) \ 297 + MI_ENTRY_POINT(_##name) ;\ 298 + mov ip, sp /* save a pointer to the args */ ; \ 299 + stmfd sp!, { save_regs } /* callee saved regs */ ;\ 300 + ldmia ip, { arg_regs } /* load arg regs */ ; \ 301 + DO_SYSCALL(SYS_##name) ;\ 302 + ldmfd sp!, { save_regs } /* restore callee saved regs */ ; \ 303 + bxcc lr /* return if carry is clear (no error) */ ; \ 304 + 1: MI_BRANCH_EXTERNAL(_##cerror) 305 + 306 + #define COMMA , 307 + 308 + #if __BIGGEST_ALIGNMENT__ > 4 309 + 310 + /* For the armv7k ABI, the alignment requirements may add padding. So we 311 + * let the kernel figure it out and push extra on the stack to avoid un-needed 312 + * copy-ins */ 313 + 314 + /* We'll also use r8 for moving arguments */ 315 + 316 + #define SYSCALL_0(name) SYSCALL_0to4(name) 317 + #define SYSCALL_1(name) SYSCALL_0to4(name) 318 + #define SYSCALL_2(name) SYSCALL_0to4(name) 319 + #define SYSCALL_3(name) SYSCALL_0to4(name) 320 + #define SYSCALL_4(name) SYSCALL_6to12(name, r4-r5, r4-r5) 321 + #undef SYSCALL_5 322 + #define SYSCALL_5(name) SYSCALL_6to12(name, r4-r5, r4-r5) 323 + #define SYSCALL_6(name) SYSCALL_6to12(name, r4-r6 COMMA r8, r4-r6 COMMA r8) 324 + #define SYSCALL_7(name) SYSCALL_6to12(name, r4-r6 COMMA r8, r4-r6 COMMA r8) 325 + #define SYSCALL_8(name) SYSCALL_6to12(name, r4-r6 COMMA r8, r4-r6 COMMA r8) 326 + #define SYSCALL_12(name) SYSCALL_6to12(name, r4-r6 COMMA r8, r4-r6 COMMA r8) 327 + 328 + #else // !(__BIGGEST_ALIGNMENT__ > 4) (the normal arm32 ABI case) 329 + 330 + #define SYSCALL_0(name) SYSCALL_0to4(name) 331 + #define SYSCALL_1(name) SYSCALL_0to4(name) 332 + #define SYSCALL_2(name) SYSCALL_0to4(name) 333 + #define SYSCALL_3(name) SYSCALL_0to4(name) 334 + #define SYSCALL_4(name) SYSCALL_0to4(name) 335 + /* SYSCALL_5 declared above */ 336 + #define SYSCALL_6(name) SYSCALL_6to12(name, r4-r5, r4-r5) 337 + #define SYSCALL_7(name) SYSCALL_6to12(name, r4-r6 COMMA r8, r4-r6) 338 + #define SYSCALL_8(name) SYSCALL_6to12(name, r4-r6 COMMA r8, r4-r6) /* 8th on stack */ 339 + #define SYSCALL_12(name) SYSCALL_6to12(name, r4-r6 COMMA r8, r4-r6) /* 8th-12th on stack */ 340 + 341 + #endif // __BIGGEST_ALIGNMENT__ > 4 342 + 343 + /* select the appropriate syscall code, based on the number of arguments */ 344 + #ifndef __SYSCALL_32BIT_ARG_BYTES 345 + #define SYSCALL(name, nargs, cerror) SYSCALL_##nargs(name, cerror) 346 + #define SYSCALL_NONAME(name, nargs, cerror) SYSCALL_NONAME_##nargs(name, cerror) 347 + #else 348 + #if __SYSCALL_32BIT_ARG_BYTES < 20 349 + #define SYSCALL(name, nargs, cerror) SYSCALL_0to4(name, cerror) 350 + #define SYSCALL_NONAME(name, nargs, cerror) SYSCALL_NONAME_0to4(name, cerror) 351 + #elif __SYSCALL_32BIT_ARG_BYTES == 20 352 + #define SYSCALL(name, nargs, cerror) SYSCALL_5(name, cerror) 353 + #define SYSCALL_NONAME(name, nargs, cerror) SYSCALL_NONAME_5(name, cerror) 354 + #elif __SYSCALL_32BIT_ARG_BYTES == 24 355 + #define SYSCALL(name, nargs, cerror) SYSCALL_6(name, cerror) 356 + #define SYSCALL_NONAME(name, nargs, cerror) SYSCALL_NONAME_6(name, cerror) 357 + #elif __SYSCALL_32BIT_ARG_BYTES == 28 358 + #define SYSCALL(name, nargs, cerror) SYSCALL_7(name, cerror) 359 + #define SYSCALL_NONAME(name, nargs, cerror) SYSCALL_NONAME_7(name, cerror) 360 + #elif __SYSCALL_32BIT_ARG_BYTES == 32 361 + #define SYSCALL(name, nargs, cerror) SYSCALL_8(name, cerror) 362 + #define SYSCALL_NONAME(name, nargs, cerror) SYSCALL_NONAME_8(name, cerror) 363 + #elif __SYSCALL_32BIT_ARG_BYTES == 36 364 + #define SYSCALL(name, nargs, cerror) SYSCALL_8(name, cerror) 365 + #define SYSCALL_NONAME(name, nargs, cerror) SYSCALL_NONAME_8(name, cerror) 366 + #elif __SYSCALL_32BIT_ARG_BYTES == 40 367 + #define SYSCALL(name, nargs, cerror) SYSCALL_8(name, cerror) 368 + #define SYSCALL_NONAME(name, nargs, cerror) SYSCALL_NONAME_8(name, cerror) 369 + #elif __SYSCALL_32BIT_ARG_BYTES == 44 370 + #define SYSCALL(name, nargs, cerror) SYSCALL_8(name, cerror) 371 + #define SYSCALL_NONAME(name, nargs, cerror) SYSCALL_NONAME_8(name, cerror) 372 + #elif __SYSCALL_32BIT_ARG_BYTES == 48 373 + #define SYSCALL(name, nargs, cerror) SYSCALL_12(name, cerror) 374 + #define SYSCALL_NONAME(name, nargs, cerror) SYSCALL_NONAME_12(name, cerror) 375 + #endif 376 + #endif 377 + 378 + #define SYSCALL_NONAME_0to4(name, cerror) \ 379 + DO_SYSCALL(SYS_##name) ;\ 380 + bcc 1f /* branch if carry bit is clear (no error) */ ; \ 381 + MI_BRANCH_EXTERNAL(_##cerror) /* call cerror */ ; \ 382 + 1: 383 + 384 + #define SYSCALL_NONAME_5(name, cerror) \ 385 + mov ip, sp /* save a pointer to the args */ ; \ 386 + stmfd sp!, { r4-r5 } /* save r4-r5 */ ;\ 387 + ldr r4, [ip] /* load 5th arg */ ; \ 388 + DO_SYSCALL(SYS_##name) ;\ 389 + ldmfd sp!, { r4-r5 } /* restore r4-r7 */ ; \ 390 + bcc 1f /* branch if carry bit is clear (no error) */ ; \ 391 + MI_BRANCH_EXTERNAL(_##cerror) /* call cerror */ ; \ 392 + 1: 393 + 394 + #define SYSCALL_NONAME_6to12(name, save_regs, arg_regs, cerror) \ 395 + mov ip, sp /* save a pointer to the args */ ; \ 396 + stmfd sp!, { save_regs } /* callee save regs */ ;\ 397 + ldmia ip, { arg_regs } /* load arguments */ ; \ 398 + DO_SYSCALL(SYS_##name) ;\ 399 + ldmfd sp!, { save_regs } /* restore callee saved regs */ ; \ 400 + bcc 1f /* branch if carry bit is clear (no error) */ ; \ 401 + MI_BRANCH_EXTERNAL(_##cerror) /* call cerror */ ; \ 402 + 1: 403 + 404 + 405 + #if __BIGGEST_ALIGNMENT__ > 4 406 + 407 + /* For the armv7k ABI, the alignment requirements may add padding. So we 408 + * let the kernel figure it out and push extra on the stack to avoid un-needed 409 + * copy-ins. We are relying on arguments that aren't in registers starting 410 + * 32 bytes from sp. We also use r8 like in the mach case. */ 411 + 412 + #define SYSCALL_NONAME_0(name, cerror) SYSCALL_NONAME_0to4(name, cerror) 413 + #define SYSCALL_NONAME_1(name, cerror) SYSCALL_NONAME_0to4(name, cerror) 414 + #define SYSCALL_NONAME_2(name, cerror) SYSCALL_NONAME_0to4(name, cerror) 415 + #define SYSCALL_NONAME_3(name, cerror) SYSCALL_NONAME_0to4(name, cerror) 416 + #define SYSCALL_NONAME_4(name, cerror) SYSCALL_NONAME_6to12(name, r4-r5, r4-r5, cerror) 417 + #undef SYSCALL_NONAME_5 418 + #define SYSCALL_NONAME_5(name, cerror) SYSCALL_NONAME_6to12(name, r4-r5, r4-r5, cerror) 419 + #define SYSCALL_NONAME_6(name, cerror) SYSCALL_NONAME_6to12(name, r4-r6 COMMA r8, r4-r6 COMMA r8, cerror) 420 + #define SYSCALL_NONAME_7(name, cerror) SYSCALL_NONAME_6to12(name, r4-r6 COMMA r8, r4-r6 COMMA r8, cerror) 421 + #define SYSCALL_NONAME_8(name, cerror) SYSCALL_NONAME_6to12(name, r4-r6 COMMA r8, r4-r6 COMMA r8, cerror) 422 + #define SYSCALL_NONAME_12(name, cerror) SYSCALL_NONAME_6to12(name, r4-r6 COMMA r8, r4-r6 COMMA r8, cerror) 423 + 424 + #else // !(__BIGGEST_ALIGNMENT__ > 4) (the normal arm32 ABI case) 425 + 426 + #define SYSCALL_NONAME_0(name, cerror) SYSCALL_NONAME_0to4(name, cerror) 427 + #define SYSCALL_NONAME_1(name, cerror) SYSCALL_NONAME_0to4(name, cerror) 428 + #define SYSCALL_NONAME_2(name, cerror) SYSCALL_NONAME_0to4(name, cerror) 429 + #define SYSCALL_NONAME_3(name, cerror) SYSCALL_NONAME_0to4(name, cerror) 430 + #define SYSCALL_NONAME_4(name, cerror) SYSCALL_NONAME_0to4(name, cerror) 431 + /* SYSCALL_NONAME_5 declared above */ 432 + #define SYSCALL_NONAME_6(name, cerror) SYSCALL_NONAME_6to12(name, r4-r5, r4-r5, cerror) 433 + #define SYSCALL_NONAME_7(name, cerror) SYSCALL_NONAME_6to12(name, r4-r6 COMMA r8, r4-r6, cerror) 434 + #define SYSCALL_NONAME_8(name, cerror) SYSCALL_NONAME_6to12(name, r4-r6 COMMA r8, r4-r6, cerror) 435 + #define SYSCALL_NONAME_12(name, cerror) SYSCALL_NONAME_6to12(name, r4-r6 COMMA r8, r4-r6, cerror) 436 + 437 + #endif // __BIGGEST_ALIGNMENT__ > 4 438 + 439 + #define PSEUDO(pseudo, name, nargs, cerror) \ 440 + .globl pseudo ;\ 441 + .text ;\ 442 + .align 2 ;\ 443 + pseudo: ;\ 444 + SYSCALL_NONAME(name, nargs, cerror) 445 + 446 + #define __SYSCALL2(pseudo, name, nargs, cerror) \ 447 + PSEUDO(pseudo, name, nargs, cerror) ;\ 448 + bx lr 449 + 450 + #define __SYSCALL(pseudo, name, nargs) \ 451 + PSEUDO(pseudo, name, nargs, cerror) ;\ 452 + bx lr 453 + 454 + #elif defined(__arm64__) 455 + 456 + #include <mach/arm/syscall_sw.h> 457 + #include <mach/arm/vm_param.h> 458 + #include <mach/arm64/asm.h> 459 + 460 + #if defined(__arm64__) && !defined(__LP64__) 461 + #define ZERO_EXTEND(argnum) uxtw x ## argnum, w ## argnum 462 + #else 463 + #define ZERO_EXTEND(argnum) 464 + #endif 465 + 466 + #if defined(__arm64__) && !defined(__LP64__) 467 + #define SIGN_EXTEND(argnum) sxtw x ## argnum, w ## argnum 468 + #else 469 + #define SIGN_EXTEND(argnum) 470 + #endif 471 + 472 + /* 473 + * ARM64 system call interface: 474 + * 475 + * TBD 476 + */ 477 + 478 + #define DO_SYSCALL(num, cerror) \ 479 + mov x16, #(num) %%\ 480 + svc #SWI_SYSCALL %%\ 481 + b.cc 2f %%\ 482 + ARM64_STACK_PROLOG %%\ 483 + PUSH_FRAME %%\ 484 + bl _##cerror %%\ 485 + POP_FRAME %%\ 486 + ARM64_STACK_EPILOG %%\ 487 + 2: 488 + 489 + #define MI_GET_ADDRESS(reg,var) \ 490 + adrp reg, var@page %%\ 491 + add reg, reg, var@pageoff %% 492 + 493 + #define MI_CALL_EXTERNAL(sym) \ 494 + .globl sym %% \ 495 + bl sym 496 + 497 + #define SYSCALL_NONAME(name, nargs, cerror) \ 498 + DO_SYSCALL(SYS_##name, cerror) %% \ 499 + 1: 500 + 501 + #define MI_ENTRY_POINT(name) \ 502 + .text %% \ 503 + .align 2 %% \ 504 + .globl name %% \ 505 + name: 506 + 507 + #define PSEUDO(pseudo, name, nargs, cerror) \ 508 + .text %% \ 509 + .align 2 %% \ 510 + .globl pseudo %% \ 511 + pseudo: %% \ 512 + SYSCALL_NONAME(name, nargs, cerror) 513 + 514 + #define __SYSCALL(pseudo, name, nargs) \ 515 + PSEUDO(pseudo, name, nargs, cerror) %% \ 516 + ret 517 + 518 + #define __SYSCALL2(pseudo, name, nargs, cerror) \ 519 + PSEUDO(pseudo, name, nargs, cerror) %% \ 520 + ret 521 + 522 + #else 523 + #error Unsupported architecture 524 + #endif 525 +
+18
src/kernel/libsyscall/bsdsyscalls/_____old_semwait_signal_nocancel.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 20 2 + #include "SYS.h" 3 + 4 + #ifndef SYS___old_semwait_signal_nocancel 5 + #error "SYS___old_semwait_signal_nocancel not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_____old_semwait_signal_nocancel) 10 + SYSCALL_NONAME(__old_semwait_signal_nocancel, 5, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_____old_semwait_signal_nocancel, __old_semwait_signal_nocancel, 5, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_____sigwait_nocancel.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS___sigwait_nocancel 5 + #error "SYS___sigwait_nocancel not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_____sigwait_nocancel) 10 + SYSCALL_NONAME(__sigwait_nocancel, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_____sigwait_nocancel, __sigwait_nocancel, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/___abort_with_payload.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 32 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_abort_with_payload 5 + #error "SYS_abort_with_payload not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___abort_with_payload) 10 + SYSCALL_NONAME(abort_with_payload, 6, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___abort_with_payload, abort_with_payload, 6, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+38
src/kernel/libsyscall/bsdsyscalls/___accept.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_accept 5 + #error "SYS_accept not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___accept) 10 + SYSCALL_NONAME(accept, 3, cerror) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___accept, accept, 3, cerror) 15 + #endif 16 + 17 + #endif 18 + 19 + #if defined(__i386__) 20 + .globl _accept$UNIX2003 21 + .set _accept$UNIX2003, ___accept 22 + #endif 23 + 24 + #if defined(__x86_64__) 25 + .globl _accept 26 + .set _accept, ___accept 27 + #endif 28 + 29 + #if defined(__ppc__) 30 + .globl _accept$UNIX2003 31 + .set _accept$UNIX2003, ___accept 32 + #endif 33 + 34 + #if defined(__arm64__) 35 + .globl _accept 36 + .set _accept, ___accept 37 + #endif 38 +
+38
src/kernel/libsyscall/bsdsyscalls/___accept_nocancel.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_accept_nocancel 5 + #error "SYS_accept_nocancel not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___accept_nocancel) 10 + SYSCALL_NONAME(accept_nocancel, 3, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___accept_nocancel, accept_nocancel, 3, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 + 19 + #if defined(__i386__) 20 + .globl _accept$NOCANCEL$UNIX2003 21 + .set _accept$NOCANCEL$UNIX2003, ___accept_nocancel 22 + #endif 23 + 24 + #if defined(__x86_64__) 25 + .globl _accept$NOCANCEL 26 + .set _accept$NOCANCEL, ___accept_nocancel 27 + #endif 28 + 29 + #if defined(__ppc__) 30 + .globl _accept$NOCANCEL$UNIX2003 31 + .set _accept$NOCANCEL$UNIX2003, ___accept_nocancel 32 + #endif 33 + 34 + #if defined(__arm64__) 35 + .globl _accept$NOCANCEL 36 + .set _accept$NOCANCEL, ___accept_nocancel 37 + #endif 38 +
+39
src/kernel/libsyscall/bsdsyscalls/___access_extended.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 16 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_access_extended 5 + #error "SYS_access_extended not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___access_extended) 10 + ZERO_EXTEND(1) 11 + SYSCALL_NONAME(access_extended, 4, cerror_nocancel) 12 + ret 13 + #else 14 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 15 + __SYSCALL2(___access_extended, access_extended, 4, cerror_nocancel) 16 + #endif 17 + 18 + #endif 19 + 20 + #if defined(__i386__) 21 + .globl _accessx_np 22 + .set _accessx_np, ___access_extended 23 + #endif 24 + 25 + #if defined(__x86_64__) 26 + .globl _accessx_np 27 + .set _accessx_np, ___access_extended 28 + #endif 29 + 30 + #if defined(__ppc__) 31 + .globl _accessx_np 32 + .set _accessx_np, ___access_extended 33 + #endif 34 + 35 + #if defined(__arm64__) 36 + .globl _accessx_np 37 + .set _accessx_np, ___access_extended 38 + #endif 39 +
+42
src/kernel/libsyscall/bsdsyscalls/___aio_suspend_nocancel.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_aio_suspend_nocancel 5 + #error "SYS_aio_suspend_nocancel not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___aio_suspend_nocancel) 10 + SYSCALL_NONAME(aio_suspend_nocancel, 3, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___aio_suspend_nocancel, aio_suspend_nocancel, 3, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 + 19 + #if defined(__i386__) 20 + .globl _aio_suspend 21 + .set _aio_suspend, ___aio_suspend_nocancel 22 + .globl _aio_suspend$NOCANCEL$UNIX2003 23 + .set _aio_suspend$NOCANCEL$UNIX2003, ___aio_suspend_nocancel 24 + #endif 25 + 26 + #if defined(__x86_64__) 27 + .globl _aio_suspend$NOCANCEL 28 + .set _aio_suspend$NOCANCEL, ___aio_suspend_nocancel 29 + #endif 30 + 31 + #if defined(__ppc__) 32 + .globl _aio_suspend 33 + .set _aio_suspend, ___aio_suspend_nocancel 34 + .globl _aio_suspend$NOCANCEL$UNIX2003 35 + .set _aio_suspend$NOCANCEL$UNIX2003, ___aio_suspend_nocancel 36 + #endif 37 + 38 + #if defined(__arm64__) 39 + .globl _aio_suspend$NOCANCEL 40 + .set _aio_suspend$NOCANCEL, ___aio_suspend_nocancel 41 + #endif 42 +
+38
src/kernel/libsyscall/bsdsyscalls/___bind.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_bind 5 + #error "SYS_bind not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___bind) 10 + SYSCALL_NONAME(bind, 3, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___bind, bind, 3, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 + 19 + #if defined(__i386__) 20 + .globl _bind$UNIX2003 21 + .set _bind$UNIX2003, ___bind 22 + #endif 23 + 24 + #if defined(__x86_64__) 25 + .globl _bind 26 + .set _bind, ___bind 27 + #endif 28 + 29 + #if defined(__ppc__) 30 + .globl _bind$UNIX2003 31 + .set _bind$UNIX2003, ___bind 32 + #endif 33 + 34 + #if defined(__arm64__) 35 + .globl _bind 36 + .set _bind, ___bind 37 + #endif 38 +
+18
src/kernel/libsyscall/bsdsyscalls/___bsdthread_create.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 20 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_bsdthread_create 5 + #error "SYS_bsdthread_create not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___bsdthread_create) 10 + SYSCALL_NONAME(bsdthread_create, 5, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___bsdthread_create, bsdthread_create, 5, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/___bsdthread_ctl.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 16 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_bsdthread_ctl 5 + #error "SYS_bsdthread_ctl not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___bsdthread_ctl) 10 + SYSCALL_NONAME(bsdthread_ctl, 4, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___bsdthread_ctl, bsdthread_ctl, 4, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/___bsdthread_register.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 28 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_bsdthread_register 5 + #error "SYS_bsdthread_register not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___bsdthread_register) 10 + SYSCALL_NONAME(bsdthread_register, 7, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___bsdthread_register, bsdthread_register, 7, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+19
src/kernel/libsyscall/bsdsyscalls/___bsdthread_terminate.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 16 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_bsdthread_terminate 5 + #error "SYS_bsdthread_terminate not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___bsdthread_terminate) 10 + ZERO_EXTEND(1) 11 + SYSCALL_NONAME(bsdthread_terminate, 4, cerror_nocancel) 12 + ret 13 + #else 14 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 15 + __SYSCALL2(___bsdthread_terminate, bsdthread_terminate, 4, cerror_nocancel) 16 + #endif 17 + 18 + #endif 19 +
+28
src/kernel/libsyscall/bsdsyscalls/___chmod.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_chmod 5 + #error "SYS_chmod not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___chmod) 10 + SYSCALL_NONAME(chmod, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___chmod, chmod, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 + 19 + #if defined(__i386__) 20 + .globl _chmod 21 + .set _chmod, ___chmod 22 + #endif 23 + 24 + #if defined(__ppc__) 25 + .globl _chmod 26 + .set _chmod, ___chmod 27 + #endif 28 +
+18
src/kernel/libsyscall/bsdsyscalls/___chmod_extended.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 20 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_chmod_extended 5 + #error "SYS_chmod_extended not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___chmod_extended) 10 + SYSCALL_NONAME(chmod_extended, 5, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___chmod_extended, chmod_extended, 5, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+42
src/kernel/libsyscall/bsdsyscalls/___close_nocancel.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 4 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_close_nocancel 5 + #error "SYS_close_nocancel not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___close_nocancel) 10 + SYSCALL_NONAME(close_nocancel, 1, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___close_nocancel, close_nocancel, 1, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 + 19 + #if defined(__i386__) 20 + .globl _close 21 + .set _close, ___close_nocancel 22 + .globl _close$NOCANCEL$UNIX2003 23 + .set _close$NOCANCEL$UNIX2003, ___close_nocancel 24 + #endif 25 + 26 + #if defined(__x86_64__) 27 + .globl _close$NOCANCEL 28 + .set _close$NOCANCEL, ___close_nocancel 29 + #endif 30 + 31 + #if defined(__ppc__) 32 + .globl _close 33 + .set _close, ___close_nocancel 34 + .globl _close$NOCANCEL$UNIX2003 35 + .set _close$NOCANCEL$UNIX2003, ___close_nocancel 36 + #endif 37 + 38 + #if defined(__arm64__) 39 + .globl _close$NOCANCEL 40 + .set _close$NOCANCEL, ___close_nocancel 41 + #endif 42 +
+18
src/kernel/libsyscall/bsdsyscalls/___coalition.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_coalition 5 + #error "SYS_coalition not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___coalition) 10 + SYSCALL_NONAME(coalition, 3, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___coalition, coalition, 3, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/___coalition_info.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 16 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_coalition_info 5 + #error "SYS_coalition_info not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___coalition_info) 10 + SYSCALL_NONAME(coalition_info, 4, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___coalition_info, coalition_info, 4, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/___coalition_ledger.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 16 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_coalition_ledger 5 + #error "SYS_coalition_ledger not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___coalition_ledger) 10 + SYSCALL_NONAME(coalition_ledger, 4, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___coalition_ledger, coalition_ledger, 4, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+38
src/kernel/libsyscall/bsdsyscalls/___connect.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_connect 5 + #error "SYS_connect not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___connect) 10 + SYSCALL_NONAME(connect, 3, cerror) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___connect, connect, 3, cerror) 15 + #endif 16 + 17 + #endif 18 + 19 + #if defined(__i386__) 20 + .globl _connect$UNIX2003 21 + .set _connect$UNIX2003, ___connect 22 + #endif 23 + 24 + #if defined(__x86_64__) 25 + .globl _connect 26 + .set _connect, ___connect 27 + #endif 28 + 29 + #if defined(__ppc__) 30 + .globl _connect$UNIX2003 31 + .set _connect$UNIX2003, ___connect 32 + #endif 33 + 34 + #if defined(__arm64__) 35 + .globl _connect 36 + .set _connect, ___connect 37 + #endif 38 +
+38
src/kernel/libsyscall/bsdsyscalls/___connect_nocancel.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_connect_nocancel 5 + #error "SYS_connect_nocancel not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___connect_nocancel) 10 + SYSCALL_NONAME(connect_nocancel, 3, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___connect_nocancel, connect_nocancel, 3, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 + 19 + #if defined(__i386__) 20 + .globl _connect$NOCANCEL$UNIX2003 21 + .set _connect$NOCANCEL$UNIX2003, ___connect_nocancel 22 + #endif 23 + 24 + #if defined(__x86_64__) 25 + .globl _connect$NOCANCEL 26 + .set _connect$NOCANCEL, ___connect_nocancel 27 + #endif 28 + 29 + #if defined(__ppc__) 30 + .globl _connect$NOCANCEL$UNIX2003 31 + .set _connect$NOCANCEL$UNIX2003, ___connect_nocancel 32 + #endif 33 + 34 + #if defined(__arm64__) 35 + .globl _connect$NOCANCEL 36 + .set _connect$NOCANCEL, ___connect_nocancel 37 + #endif 38 +
+18
src/kernel/libsyscall/bsdsyscalls/___copyfile.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 16 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_copyfile 5 + #error "SYS_copyfile not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___copyfile) 10 + SYSCALL_NONAME(copyfile, 4, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___copyfile, copyfile, 4, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/___csrctl.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_csrctl 5 + #error "SYS_csrctl not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___csrctl) 10 + SYSCALL_NONAME(csrctl, 3, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___csrctl, csrctl, 3, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/___delete.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 4 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_delete 5 + #error "SYS_delete not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___delete) 10 + SYSCALL_NONAME(delete, 1, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___delete, delete, 1, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/___disable_threadsignal.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 4 2 + #include "SYS.h" 3 + 4 + #ifndef SYS___disable_threadsignal 5 + #error "SYS___disable_threadsignal not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___disable_threadsignal) 10 + SYSCALL_NONAME(__disable_threadsignal, 1, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___disable_threadsignal, __disable_threadsignal, 1, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+38
src/kernel/libsyscall/bsdsyscalls/___exit.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 4 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_exit 5 + #error "SYS_exit not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___exit) 10 + SYSCALL_NONAME(exit, 1, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___exit, exit, 1, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 + 19 + #if defined(__i386__) 20 + .globl __exit 21 + .set __exit, ___exit 22 + #endif 23 + 24 + #if defined(__x86_64__) 25 + .globl __exit 26 + .set __exit, ___exit 27 + #endif 28 + 29 + #if defined(__ppc__) 30 + .globl __exit 31 + .set __exit, ___exit 32 + #endif 33 + 34 + #if defined(__arm64__) 35 + .globl __exit 36 + .set __exit, ___exit 37 + #endif 38 +
+28
src/kernel/libsyscall/bsdsyscalls/___fchmod.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_fchmod 5 + #error "SYS_fchmod not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___fchmod) 10 + SYSCALL_NONAME(fchmod, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___fchmod, fchmod, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 + 19 + #if defined(__i386__) 20 + .globl _fchmod 21 + .set _fchmod, ___fchmod 22 + #endif 23 + 24 + #if defined(__ppc__) 25 + .globl _fchmod 26 + .set _fchmod, ___fchmod 27 + #endif 28 +
+18
src/kernel/libsyscall/bsdsyscalls/___fchmod_extended.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 20 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_fchmod_extended 5 + #error "SYS_fchmod_extended not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___fchmod_extended) 10 + SYSCALL_NONAME(fchmod_extended, 5, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___fchmod_extended, fchmod_extended, 5, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+29
src/kernel/libsyscall/bsdsyscalls/___fcntl.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_fcntl 5 + #error "SYS_fcntl not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___fcntl) 10 + SIGN_EXTEND(2) 11 + SYSCALL_NONAME(fcntl, 3, cerror) 12 + ret 13 + #else 14 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 15 + __SYSCALL2(___fcntl, fcntl, 3, cerror) 16 + #endif 17 + 18 + #endif 19 + 20 + #if defined(__i386__) 21 + .globl _fcntl$UNIX2003 22 + .set _fcntl$UNIX2003, ___fcntl 23 + #endif 24 + 25 + #if defined(__ppc__) 26 + .globl _fcntl$UNIX2003 27 + .set _fcntl$UNIX2003, ___fcntl 28 + #endif 29 +
+33
src/kernel/libsyscall/bsdsyscalls/___fcntl_nocancel.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_fcntl_nocancel 5 + #error "SYS_fcntl_nocancel not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___fcntl_nocancel) 10 + SIGN_EXTEND(2) 11 + SYSCALL_NONAME(fcntl_nocancel, 3, cerror_nocancel) 12 + ret 13 + #else 14 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 15 + __SYSCALL2(___fcntl_nocancel, fcntl_nocancel, 3, cerror_nocancel) 16 + #endif 17 + 18 + #endif 19 + 20 + #if defined(__i386__) 21 + .globl _fcntl 22 + .set _fcntl, ___fcntl_nocancel 23 + .globl _fcntl$NOCANCEL$UNIX2003 24 + .set _fcntl$NOCANCEL$UNIX2003, ___fcntl_nocancel 25 + #endif 26 + 27 + #if defined(__ppc__) 28 + .globl _fcntl 29 + .set _fcntl, ___fcntl_nocancel 30 + .globl _fcntl$NOCANCEL$UNIX2003 31 + .set _fcntl$NOCANCEL$UNIX2003, ___fcntl_nocancel 32 + #endif 33 +
+177
src/kernel/libsyscall/bsdsyscalls/___fork.S
··· 1 + /* 2 + * Copyright (c) 1999-2010 Apple Inc. All rights reserved. 3 + * 4 + * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ 5 + * 6 + * This file contains Original Code and/or Modifications of Original Code 7 + * as defined in and that are subject to the Apple Public Source License 8 + * Version 2.0 (the 'License'). You may not use this file except in 9 + * compliance with the License. The rights granted to you under the License 10 + * may not be used to create, or enable the creation or redistribution of, 11 + * unlawful or unlicensed copies of an Apple operating system, or to 12 + * circumvent, violate, or enable the circumvention or violation of, any 13 + * terms of an Apple operating system software license agreement. 14 + * 15 + * Please obtain a copy of the License at 16 + * http://www.opensource.apple.com/apsl/ and read it before using this file. 17 + * 18 + * The Original Code and all software distributed under the License are 19 + * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 20 + * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, 21 + * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, 22 + * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 23 + * Please see the License for the specific language governing rights and 24 + * limitations under the License. 25 + * 26 + * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ 27 + */ 28 + /* Copyright (c) 1992 NeXT Computer, Inc. All rights reserved. 29 + * 30 + * File: libc/ppc/sys/fork.s 31 + * 32 + * HISTORY 33 + * 18-Nov-92 Ben Fathi (benf@next.com) 34 + * Created from M88K sources 35 + * 36 + * 11-Jan-92 Peter King (king@next.com) 37 + * Created from M68K sources 38 + */ 39 + 40 + /* 41 + * All of the asm stubs in this file have been adjusted so the pre/post 42 + * fork handlers and dyld fixup are done in C inside Libc. As such, Libc 43 + * expects the __fork asm to fix up the return code to be -1, 0 or pid 44 + * and errno if needed. 45 + */ 46 + 47 + #include "SYS.h" 48 + 49 + #if defined(__i386__) 50 + 51 + LEAF(___fork, 0) 52 + subl $28, %esp // Align the stack, with 16 bytes of extra padding that we'll need 53 + 54 + movl $ SYS_fork,%eax; // code for fork -> eax 55 + #ifdef DARLING 56 + call __darling_bsd_syscall 57 + cmpl $0, %eax 58 + jnb L1 59 + #else 60 + UNIX_SYSCALL_TRAP // do the system call 61 + jnc L1 // jump if CF==0 62 + #endif 63 + 64 + CALL_EXTERN(tramp_cerror) 65 + movl $-1,%eax 66 + addl $28, %esp // restore the stack 67 + ret 68 + 69 + L1: 70 + orl %edx,%edx // CF=OF=0, ZF set if zero result 71 + jz L2 // parent, since r1 == 0 in parent, 1 in child 72 + 73 + //child here... 74 + xorl %eax,%eax // zero eax 75 + REG_TO_EXTERN(%eax, __current_pid); 76 + L2: 77 + addl $28, %esp // restore the stack 78 + // parent ends up here skipping child portion 79 + ret 80 + 81 + #elif defined(__x86_64__) 82 + 83 + LEAF(___fork, 0) 84 + subq $24, %rsp // Align the stack, plus room for local storage 85 + 86 + #ifdef DARLING 87 + movl $ SYS_fork, %eax 88 + call __darling_bsd_syscall 89 + cmpq $0, %rax 90 + jnb L1 91 + #else 92 + movl $ SYSCALL_CONSTRUCT_UNIX(SYS_fork),%eax; // code for fork -> rax 93 + UNIX_SYSCALL_TRAP // do the system call 94 + jnc L1 // jump if CF==0 95 + #endif 96 + 97 + movq %rax, %rdi 98 + CALL_EXTERN(_cerror) 99 + movq $-1, %rax 100 + addq $24, %rsp // restore the stack 101 + ret 102 + 103 + L1: 104 + #ifdef DARLING 105 + testl %eax, %eax 106 + jnz L2 107 + #else 108 + orl %edx,%edx // CF=OF=0, ZF set if zero result 109 + jz L2 // parent, since r1 == 0 in parent, 1 in child 110 + #endif 111 + 112 + //child here... 113 + xorq %rax, %rax 114 + PICIFY(__current_pid) 115 + movl %eax,(%r11) 116 + L2: 117 + // parent ends up here skipping child portion 118 + addq $24, %rsp // restore the stack 119 + ret 120 + 121 + #elif defined(__arm__) 122 + 123 + MI_ENTRY_POINT(___fork) 124 + stmfd sp!, {r4, r7, lr} 125 + add r7, sp, #4 126 + 127 + mov r1, #1 // prime results 128 + mov r12, #SYS_fork 129 + swi #SWI_SYSCALL // make the syscall 130 + bcs Lbotch // error? 131 + 132 + cmp r1, #0 // parent (r1=0) or child(r1=1) 133 + beq Lparent 134 + 135 + //child here... 136 + MI_GET_ADDRESS(r3, __current_pid) 137 + mov r0, #0 138 + str r0, [r3] // clear cached pid in child 139 + ldmfd sp!, {r4, r7, pc} 140 + 141 + Lbotch: 142 + MI_CALL_EXTERNAL(_cerror) // jump here on error 143 + mov r0,#-1 // set the error 144 + // fall thru 145 + Lparent: 146 + ldmfd sp!, {r4, r7, pc} // pop and return 147 + 148 + #elif defined(__arm64__) 149 + 150 + #include <mach/arm64/asm.h> 151 + 152 + MI_ENTRY_POINT(___fork) 153 + ARM64_STACK_PROLOG 154 + PUSH_FRAME 155 + // ARM moves a 1 in to r1 here, but I can't see why. 156 + mov x16, #SYS_fork // Syscall code 157 + svc #SWI_SYSCALL // Trap to kernel 158 + b.cs Lbotch // Carry bit indicates failure 159 + cbz x1, Lparent // x1 == 0 indicates that we are the parent 160 + 161 + // Child 162 + MI_GET_ADDRESS(x9, __current_pid) // Get address of cached "current pid" 163 + mov w0, #0 164 + str w0, [x9] // Clear cached current pid 165 + POP_FRAME // And done 166 + ARM64_STACK_EPILOG 167 + 168 + Lbotch: 169 + MI_CALL_EXTERNAL(_cerror) // Handle error 170 + mov w0, #-1 // Return value is -1 171 + Lparent: 172 + POP_FRAME // Return 173 + ARM64_STACK_EPILOG 174 + 175 + #else 176 + #error Unsupported architecture 177 + #endif
+18
src/kernel/libsyscall/bsdsyscalls/___fs_snapshot.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 24 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_fs_snapshot 5 + #error "SYS_fs_snapshot not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___fs_snapshot) 10 + SYSCALL_NONAME(fs_snapshot, 6, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___fs_snapshot, fs_snapshot, 6, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/___fstat64_extended.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 16 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_fstat64_extended 5 + #error "SYS_fstat64_extended not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___fstat64_extended) 10 + SYSCALL_NONAME(fstat64_extended, 4, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___fstat64_extended, fstat64_extended, 4, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/___fstat_extended.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 16 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_fstat_extended 5 + #error "SYS_fstat_extended not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___fstat_extended) 10 + SYSCALL_NONAME(fstat_extended, 4, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___fstat_extended, fstat_extended, 4, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+42
src/kernel/libsyscall/bsdsyscalls/___fsync_nocancel.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 4 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_fsync_nocancel 5 + #error "SYS_fsync_nocancel not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___fsync_nocancel) 10 + SYSCALL_NONAME(fsync_nocancel, 1, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___fsync_nocancel, fsync_nocancel, 1, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 + 19 + #if defined(__i386__) 20 + .globl _fsync 21 + .set _fsync, ___fsync_nocancel 22 + .globl _fsync$NOCANCEL$UNIX2003 23 + .set _fsync$NOCANCEL$UNIX2003, ___fsync_nocancel 24 + #endif 25 + 26 + #if defined(__x86_64__) 27 + .globl _fsync$NOCANCEL 28 + .set _fsync$NOCANCEL, ___fsync_nocancel 29 + #endif 30 + 31 + #if defined(__ppc__) 32 + .globl _fsync 33 + .set _fsync, ___fsync_nocancel 34 + .globl _fsync$NOCANCEL$UNIX2003 35 + .set _fsync$NOCANCEL$UNIX2003, ___fsync_nocancel 36 + #endif 37 + 38 + #if defined(__arm64__) 39 + .globl _fsync$NOCANCEL 40 + .set _fsync$NOCANCEL, ___fsync_nocancel 41 + #endif 42 +
+40
src/kernel/libsyscall/bsdsyscalls/___getattrlist.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 20 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_getattrlist 5 + #error "SYS_getattrlist not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___getattrlist) 10 + ZERO_EXTEND(4) 11 + ZERO_EXTEND(3) 12 + SYSCALL_NONAME(getattrlist, 5, cerror_nocancel) 13 + ret 14 + #else 15 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 16 + __SYSCALL2(___getattrlist, getattrlist, 5, cerror_nocancel) 17 + #endif 18 + 19 + #endif 20 + 21 + #if defined(__i386__) 22 + .globl _getattrlist$UNIX2003 23 + .set _getattrlist$UNIX2003, ___getattrlist 24 + #endif 25 + 26 + #if defined(__x86_64__) 27 + .globl _getattrlist 28 + .set _getattrlist, ___getattrlist 29 + #endif 30 + 31 + #if defined(__ppc__) 32 + .globl _getattrlist$UNIX2003 33 + .set _getattrlist$UNIX2003, ___getattrlist 34 + #endif 35 + 36 + #if defined(__arm64__) 37 + .globl _getattrlist 38 + .set _getattrlist, ___getattrlist 39 + #endif 40 +
+19
src/kernel/libsyscall/bsdsyscalls/___getdirentries64.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 16 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_getdirentries64 5 + #error "SYS_getdirentries64 not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___getdirentries64) 10 + ZERO_EXTEND(2) 11 + SYSCALL_NONAME(getdirentries64, 4, cerror_nocancel) 12 + ret 13 + #else 14 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 15 + __SYSCALL2(___getdirentries64, getdirentries64, 4, cerror_nocancel) 16 + #endif 17 + 18 + #endif 19 +
+18
src/kernel/libsyscall/bsdsyscalls/___gethostuuid.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_gethostuuid 5 + #error "SYS_gethostuuid not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___gethostuuid) 10 + SYSCALL_NONAME(gethostuuid, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___gethostuuid, gethostuuid, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/___getlogin.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_getlogin 5 + #error "SYS_getlogin not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___getlogin) 10 + SYSCALL_NONAME(getlogin, 2, cerror) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___getlogin, getlogin, 2, cerror) 15 + #endif 16 + 17 + #endif 18 +
+38
src/kernel/libsyscall/bsdsyscalls/___getpeername.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_getpeername 5 + #error "SYS_getpeername not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___getpeername) 10 + SYSCALL_NONAME(getpeername, 3, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___getpeername, getpeername, 3, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 + 19 + #if defined(__i386__) 20 + .globl _getpeername$UNIX2003 21 + .set _getpeername$UNIX2003, ___getpeername 22 + #endif 23 + 24 + #if defined(__x86_64__) 25 + .globl _getpeername 26 + .set _getpeername, ___getpeername 27 + #endif 28 + 29 + #if defined(__ppc__) 30 + .globl _getpeername$UNIX2003 31 + .set _getpeername$UNIX2003, ___getpeername 32 + #endif 33 + 34 + #if defined(__arm64__) 35 + .globl _getpeername 36 + .set _getpeername, ___getpeername 37 + #endif 38 +
+193
src/kernel/libsyscall/bsdsyscalls/___getpid.S
··· 1 + /* 2 + * Copyright (c) 1999-2007 Apple Inc. All rights reserved. 3 + * 4 + * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ 5 + * 6 + * This file contains Original Code and/or Modifications of Original Code 7 + * as defined in and that are subject to the Apple Public Source License 8 + * Version 2.0 (the 'License'). You may not use this file except in 9 + * compliance with the License. The rights granted to you under the License 10 + * may not be used to create, or enable the creation or redistribution of, 11 + * unlawful or unlicensed copies of an Apple operating system, or to 12 + * circumvent, violate, or enable the circumvention or violation of, any 13 + * terms of an Apple operating system software license agreement. 14 + * 15 + * Please obtain a copy of the License at 16 + * http://www.opensource.apple.com/apsl/ and read it before using this file. 17 + * 18 + * The Original Code and all software distributed under the License are 19 + * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 20 + * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, 21 + * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, 22 + * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 23 + * Please see the License for the specific language governing rights and 24 + * limitations under the License. 25 + * 26 + * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ 27 + */ 28 + 29 + #include "SYS.h" 30 + 31 + #if defined(__i386__) 32 + 33 + .data 34 + .private_extern __current_pid 35 + L__current_pid_addr: 36 + __current_pid: 37 + .long 0 38 + 39 + #if defined(__DYNAMIC__) 40 + #define GET_CURRENT_PID \ 41 + call 0f ; \ 42 + 0: ; \ 43 + popl %ecx ; \ 44 + leal L__current_pid_addr-0b(%ecx), %ecx 45 + 46 + #define __current_pid (%ecx) 47 + 48 + #else 49 + #define GET_CURRENT_PID 50 + #endif 51 + 52 + /* 53 + * If __current_pid is > 0, return it, else make syscall. 54 + * If __current_pid is 0, cache result of syscall. 55 + */ 56 + TEXT 57 + LEAF(___getpid, 0) 58 + GET_CURRENT_PID 59 + movl __current_pid, %eax 60 + testl %eax, %eax 61 + jle 1f 62 + ret 63 + 1: 64 + UNIX_SYSCALL_NONAME(getpid, 0, cerror_nocancel) 65 + movl %eax, %edx 66 + xorl %eax, %eax 67 + GET_CURRENT_PID 68 + lock 69 + cmpxchgl %edx, __current_pid 70 + movl %edx, %eax 71 + ret 72 + 73 + #elif defined(__x86_64__) 74 + 75 + .data 76 + .private_extern __current_pid 77 + __current_pid: 78 + .long 0 79 + 80 + /* 81 + * If __current_pid is > 0, return it, else make syscall. 82 + * If __current_pid is 0, cache result of syscall. 83 + */ 84 + TEXT 85 + LEAF(___getpid, 0) 86 + movl __current_pid(%rip), %eax 87 + testl %eax, %eax 88 + jle 1f 89 + ret 90 + 1: 91 + UNIX_SYSCALL_NONAME(getpid, 0, cerror_nocancel) 92 + movl %eax, %edx 93 + xorl %eax, %eax 94 + leaq __current_pid(%rip), %rcx 95 + lock 96 + cmpxchgl %edx, (%rcx) 97 + movl %edx, %eax 98 + ret 99 + 100 + #elif defined(__arm__) 101 + 102 + #include <arm/arch.h> 103 + 104 + .data 105 + .globl __current_pid 106 + .align 2 107 + __current_pid: 108 + /* Cached pid. Possible values: 109 + * 0: no value cached 110 + * > 0: cached PID of current process 111 + * < 0: negative number of vforks in progress 112 + * INT_MIN: for pre-ARMv6, "looking" value (0x80000000) 113 + */ 114 + .long 0 115 + 116 + MI_ENTRY_POINT(___getpid) 117 + ldr r3, L__current_pid 118 + L1: add r3, pc, r3 // r3 = &__current_pid 119 + ldr r0, [r3] // get the cached pid 120 + cmp r0, #0 121 + bxgt lr // if positive, return it 122 + 123 + SYSCALL_NONAME(getpid, 0, cerror_nocancel) 124 + 125 + #ifdef _ARM_ARCH_6 126 + ldrex r2, [r3] // see if we can cache it 127 + cmp r2, #0 // we can't if there are any... 128 + bxlt lr // ...vforks in progress 129 + strex r2, r0, [r3] // ignore conflicts 130 + #else 131 + mov r1, #0x80000000 // load "looking" value 132 + swp r2, r1, [r3] // look at the value, lock others out 133 + cmp r2, r1 // anyone else trying to look? 134 + bxeq lr // yes, so return immediately/ 135 + cmp r2, #0 // see if we can cache it 136 + streq r0, [r3] // if zero, we can 137 + strne r2, [r3] // otherwise restore previous value 138 + #endif 139 + 140 + bx lr 141 + 142 + L__current_pid: 143 + .long __current_pid - (L1+8) 144 + 145 + #elif defined(__arm64__) 146 + .data 147 + .globl __current_pid 148 + .align 2 149 + __current_pid: 150 + /* cached pid. possible values: 151 + * 0: no value cached 152 + * > 0: cached pid of current process 153 + * < 0: negative number of vforks in progress 154 + * int_min: for pre-armv6, "looking" value (0x80000000) 155 + */ 156 + .long 0 157 + 158 + MI_ENTRY_POINT(___getpid) 159 + MI_GET_ADDRESS(x9, __current_pid) // Get address of cached value 160 + ldr w0, [x9] // Load it 161 + cmp w0, #0 // See if there's a cached value 162 + b.le L_notcached // If not, make syscall 163 + ret // Else, we're done 164 + L_notcached: 165 + SYSCALL_NONAME(getpid, 0, cerror_nocancel) 166 + ldxr w10, [x9] // Exclusive load 167 + cbnz w10, L_done // Unless unset, don't even try 168 + stxr wzr, w0, [x9] // Try to store, but don't care if we fail (someone will win, or not) 169 + L_done: 170 + ret // Done 171 + #else 172 + #error Unsupported architecture 173 + #endif 174 + #if defined(__i386__) 175 + .globl _getpid 176 + .set _getpid, ___getpid 177 + #endif 178 + 179 + #if defined(__x86_64__) 180 + .globl _getpid 181 + .set _getpid, ___getpid 182 + #endif 183 + 184 + #if defined(__ppc__) 185 + .globl _getpid 186 + .set _getpid, ___getpid 187 + #endif 188 + 189 + #if defined(__arm64__) 190 + .globl _getpid 191 + .set _getpid, ___getpid 192 + #endif 193 +
+28
src/kernel/libsyscall/bsdsyscalls/___getrlimit.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_getrlimit 5 + #error "SYS_getrlimit not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___getrlimit) 10 + SYSCALL_NONAME(getrlimit, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___getrlimit, getrlimit, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 + 19 + #if defined(__i386__) 20 + .globl _getrlimit 21 + .set _getrlimit, ___getrlimit 22 + #endif 23 + 24 + #if defined(__ppc__) 25 + .globl _getrlimit 26 + .set _getrlimit, ___getrlimit 27 + #endif 28 +
+38
src/kernel/libsyscall/bsdsyscalls/___getsgroups.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_getsgroups 5 + #error "SYS_getsgroups not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___getsgroups) 10 + SYSCALL_NONAME(getsgroups, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___getsgroups, getsgroups, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 + 19 + #if defined(__i386__) 20 + .globl _getsgroups_np 21 + .set _getsgroups_np, ___getsgroups 22 + #endif 23 + 24 + #if defined(__x86_64__) 25 + .globl _getsgroups_np 26 + .set _getsgroups_np, ___getsgroups 27 + #endif 28 + 29 + #if defined(__ppc__) 30 + .globl _getsgroups_np 31 + .set _getsgroups_np, ___getsgroups 32 + #endif 33 + 34 + #if defined(__arm64__) 35 + .globl _getsgroups_np 36 + .set _getsgroups_np, ___getsgroups 37 + #endif 38 +
+38
src/kernel/libsyscall/bsdsyscalls/___getsockname.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_getsockname 5 + #error "SYS_getsockname not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___getsockname) 10 + SYSCALL_NONAME(getsockname, 3, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___getsockname, getsockname, 3, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 + 19 + #if defined(__i386__) 20 + .globl _getsockname$UNIX2003 21 + .set _getsockname$UNIX2003, ___getsockname 22 + #endif 23 + 24 + #if defined(__x86_64__) 25 + .globl _getsockname 26 + .set _getsockname, ___getsockname 27 + #endif 28 + 29 + #if defined(__ppc__) 30 + .globl _getsockname$UNIX2003 31 + .set _getsockname$UNIX2003, ___getsockname 32 + #endif 33 + 34 + #if defined(__arm64__) 35 + .globl _getsockname 36 + .set _getsockname, ___getsockname 37 + #endif 38 +
+38
src/kernel/libsyscall/bsdsyscalls/___gettid.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_gettid 5 + #error "SYS_gettid not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___gettid) 10 + SYSCALL_NONAME(gettid, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___gettid, gettid, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 + 19 + #if defined(__i386__) 20 + .globl _pthread_getugid_np 21 + .set _pthread_getugid_np, ___gettid 22 + #endif 23 + 24 + #if defined(__x86_64__) 25 + .globl _pthread_getugid_np 26 + .set _pthread_getugid_np, ___gettid 27 + #endif 28 + 29 + #if defined(__ppc__) 30 + .globl _pthread_getugid_np 31 + .set _pthread_getugid_np, ___gettid 32 + #endif 33 + 34 + #if defined(__arm64__) 35 + .globl _pthread_getugid_np 36 + .set _pthread_getugid_np, ___gettid 37 + #endif 38 +
+120
src/kernel/libsyscall/bsdsyscalls/___gettimeofday.S
··· 1 + /* 2 + * Copyright (c) 1999-2016 Apple Inc. All rights reserved. 3 + * 4 + * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ 5 + * 6 + * This file contains Original Code and/or Modifications of Original Code 7 + * as defined in and that are subject to the Apple Public Source License 8 + * Version 2.0 (the 'License'). You may not use this file except in 9 + * compliance with the License. The rights granted to you under the License 10 + * may not be used to create, or enable the creation or redistribution of, 11 + * unlawful or unlicensed copies of an Apple operating system, or to 12 + * circumvent, violate, or enable the circumvention or violation of, any 13 + * terms of an Apple operating system software license agreement. 14 + * 15 + * Please obtain a copy of the License at 16 + * http://www.opensource.apple.com/apsl/ and read it before using this file. 17 + * 18 + * The Original Code and all software distributed under the License are 19 + * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 20 + * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, 21 + * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, 22 + * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 23 + * Please see the License for the specific language governing rights and 24 + * limitations under the License. 25 + * 26 + * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ 27 + */ 28 + 29 + #include "SYS.h" 30 + 31 + /* 32 + * A third argument, of type uint64_t*, was added to the gettimeofday syscall 33 + * for use cases that also want to know the mach_absolute_time that matches the 34 + * time value returned. 35 + * 36 + * __gettimeofday takes the traditional two arguments. It will zero out the 37 + * third argument argument before entering the kernel, behaving like the old 38 + * call. 39 + * 40 + * __gettimeofday_with_mach will pass it through and supporting kernels will 41 + * copy-out the mach_absolute_time. Old kernels will leave the pointed to 42 + * value alone. 43 + */ 44 + 45 + .private_extern ___gettimeofday_with_mach 46 + 47 + #if defined(__i386__) 48 + 49 + LABEL(___gettimeofday) 50 + pushl $0 51 + pushl 12(%esp) 52 + pushl 12(%esp) 53 + calll ___gettimeofday_with_mach 54 + addl $12, %esp 55 + ret 56 + 57 + LABEL(___gettimeofday_with_mach) 58 + UNIX_SYSCALL_INT_NONAME(gettimeofday,0) 59 + /* 60 + * <rdar://problem/26410029> 61 + * If eax is 0, we're on a new kernel and timeval was written by the kernel. 62 + * Otherwise, eax:edx contains the timeval and we marshal into timeval. 63 + */ 64 + cmp $0, %eax 65 + je 2f 66 + mov 4(%esp),%ecx 67 + mov %eax,(%ecx) 68 + mov %edx,4(%ecx) 69 + xor %eax,%eax 70 + 2: 71 + ret 72 + 73 + #elif defined(__x86_64__) 74 + 75 + __SYSCALL(___gettimeofday_with_mach, gettimeofday, 3) 76 + 77 + LABEL(___gettimeofday) 78 + movq $0x0, %rdx // zero out third argument 79 + 80 + UNIX_SYSCALL_NONAME(gettimeofday,0,cerror_nocancel) 81 + /* 82 + * <rdar://problem/26410029> 83 + * If rax is 0, we're on a new kernel and timeval was written by the kernel. 84 + * Otherwise, rax:rdx contains the timeval and we marshal into timeval. 85 + */ 86 + cmp $0, %rax 87 + je 2f 88 + movq %rax, (%rdi) 89 + movl %edx, 8(%rdi) 90 + xorl %eax, %eax 91 + 2: 92 + ret 93 + 94 + #elif defined(__arm__) 95 + 96 + __SYSCALL2(___gettimeofday_with_mach, gettimeofday, 3, cerror_nocancel) 97 + 98 + .text 99 + .align 2 100 + .globl ___gettimeofday 101 + ___gettimeofday: 102 + mov r2, #0x0 103 + SYSCALL_NONAME(gettimeofday, 3, cerror_nocancel) 104 + bx lr 105 + 106 + #elif defined(__arm64__) 107 + 108 + __SYSCALL2(___gettimeofday_with_mach, gettimeofday, 3, cerror_nocancel) 109 + 110 + .text 111 + .align 2 112 + .globl ___gettimeofday 113 + ___gettimeofday: 114 + movz x2, #0x0 115 + SYSCALL_NONAME(gettimeofday, 3, cerror_nocancel) 116 + ret 117 + 118 + #else 119 + #error Unsupported architecture 120 + #endif
+38
src/kernel/libsyscall/bsdsyscalls/___getwgroups.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_getwgroups 5 + #error "SYS_getwgroups not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___getwgroups) 10 + SYSCALL_NONAME(getwgroups, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___getwgroups, getwgroups, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 + 19 + #if defined(__i386__) 20 + .globl _getwgroups_np 21 + .set _getwgroups_np, ___getwgroups 22 + #endif 23 + 24 + #if defined(__x86_64__) 25 + .globl _getwgroups_np 26 + .set _getwgroups_np, ___getwgroups 27 + #endif 28 + 29 + #if defined(__ppc__) 30 + .globl _getwgroups_np 31 + .set _getwgroups_np, ___getwgroups 32 + #endif 33 + 34 + #if defined(__arm64__) 35 + .globl _getwgroups_np 36 + .set _getwgroups_np, ___getwgroups 37 + #endif 38 +
+18
src/kernel/libsyscall/bsdsyscalls/___guarded_open_dprotected_np.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 28 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_guarded_open_dprotected_np 5 + #error "SYS_guarded_open_dprotected_np not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___guarded_open_dprotected_np) 10 + SYSCALL_NONAME(guarded_open_dprotected_np, 7, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___guarded_open_dprotected_np, guarded_open_dprotected_np, 7, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/___guarded_open_np.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 20 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_guarded_open_np 5 + #error "SYS_guarded_open_np not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___guarded_open_np) 10 + SYSCALL_NONAME(guarded_open_np, 5, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___guarded_open_np, guarded_open_np, 5, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/___identitysvc.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_identitysvc 5 + #error "SYS_identitysvc not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___identitysvc) 10 + SYSCALL_NONAME(identitysvc, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___identitysvc, identitysvc, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/___initgroups.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_initgroups 5 + #error "SYS_initgroups not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___initgroups) 10 + SYSCALL_NONAME(initgroups, 3, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___initgroups, initgroups, 3, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+29
src/kernel/libsyscall/bsdsyscalls/___ioctl.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_ioctl 5 + #error "SYS_ioctl not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___ioctl) 10 + ZERO_EXTEND(1) 11 + SYSCALL_NONAME(ioctl, 3, cerror) 12 + ret 13 + #else 14 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 15 + __SYSCALL2(___ioctl, ioctl, 3, cerror) 16 + #endif 17 + 18 + #endif 19 + 20 + #if defined(__i386__) 21 + .globl _ioctl 22 + .set _ioctl, ___ioctl 23 + #endif 24 + 25 + #if defined(__ppc__) 26 + .globl _ioctl 27 + .set _ioctl, ___ioctl 28 + #endif 29 +
+18
src/kernel/libsyscall/bsdsyscalls/___iopolicysys.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_iopolicysys 5 + #error "SYS_iopolicysys not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___iopolicysys) 10 + SYSCALL_NONAME(iopolicysys, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___iopolicysys, iopolicysys, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+22
src/kernel/libsyscall/bsdsyscalls/___kdebug_trace.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 20 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_kdebug_trace 5 + #error "SYS_kdebug_trace not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___kdebug_trace) 10 + ZERO_EXTEND(2) 11 + ZERO_EXTEND(1) 12 + ZERO_EXTEND(3) 13 + ZERO_EXTEND(4) 14 + SYSCALL_NONAME(kdebug_trace, 5, cerror_nocancel) 15 + ret 16 + #else 17 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 18 + __SYSCALL2(___kdebug_trace, kdebug_trace, 5, cerror_nocancel) 19 + #endif 20 + 21 + #endif 22 +
+18
src/kernel/libsyscall/bsdsyscalls/___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(__arm64__) 9 + MI_ENTRY_POINT(___kdebug_trace64) 10 + SYSCALL_NONAME(kdebug_trace64, 5, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___kdebug_trace64, kdebug_trace64, 5, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+49
src/kernel/libsyscall/bsdsyscalls/___kdebug_trace_string.S
··· 1 + /* 2 + * Copyright (c) 1999-2007 Apple Inc. All rights reserved. 3 + * 4 + * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ 5 + * 6 + * This file contains Original Code and/or Modifications of Original Code 7 + * as defined in and that are subject to the Apple Public Source License 8 + * Version 2.0 (the 'License'). You may not use this file except in 9 + * compliance with the License. The rights granted to you under the License 10 + * may not be used to create, or enable the creation or redistribution of, 11 + * unlawful or unlicensed copies of an Apple operating system, or to 12 + * circumvent, violate, or enable the circumvention or violation of, any 13 + * terms of an Apple operating system software license agreement. 14 + * 15 + * Please obtain a copy of the License at 16 + * http://www.opensource.apple.com/apsl/ and read it before using this file. 17 + * 18 + * The Original Code and all software distributed under the License are 19 + * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 20 + * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, 21 + * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, 22 + * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 23 + * Please see the License for the specific language governing rights and 24 + * limitations under the License. 25 + * 26 + * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ 27 + */ 28 + 29 + #include "SYS.h" 30 + 31 + #if defined(__x86_64__) 32 + 33 + __SYSCALL(___kdebug_trace_string, kdebug_trace_string, 3) 34 + 35 + #elif defined(__i386__) 36 + 37 + __SYSCALL_INT(___kdebug_trace_string, kdebug_trace_string, 3) 38 + 39 + #elif defined(__arm__) 40 + 41 + __SYSCALL(___kdebug_trace_string, kdebug_trace_string, 4) 42 + 43 + #elif defined(__arm64__) 44 + 45 + __SYSCALL(___kdebug_trace_string, kdebug_trace_string, 3) 46 + 47 + #else 48 + #error Unsupported architecture 49 + #endif
+18
src/kernel/libsyscall/bsdsyscalls/___kdebug_typefilter.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_kdebug_typefilter 5 + #error "SYS_kdebug_typefilter not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___kdebug_typefilter) 10 + SYSCALL_NONAME(kdebug_typefilter, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___kdebug_typefilter, kdebug_typefilter, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/___kill.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_kill 5 + #error "SYS_kill not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___kill) 10 + SYSCALL_NONAME(kill, 3, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___kill, kill, 3, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+19
src/kernel/libsyscall/bsdsyscalls/___kqueue_workloop_ctl.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 20 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_kqueue_workloop_ctl 5 + #error "SYS_kqueue_workloop_ctl not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___kqueue_workloop_ctl) 10 + ZERO_EXTEND(3) 11 + SYSCALL_NONAME(kqueue_workloop_ctl, 4, cerror_nocancel) 12 + ret 13 + #else 14 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 15 + __SYSCALL2(___kqueue_workloop_ctl, kqueue_workloop_ctl, 4, cerror_nocancel) 16 + #endif 17 + 18 + #endif 19 +
+38
src/kernel/libsyscall/bsdsyscalls/___lchown.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_lchown 5 + #error "SYS_lchown not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___lchown) 10 + SYSCALL_NONAME(lchown, 3, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___lchown, lchown, 3, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 + 19 + #if defined(__i386__) 20 + .globl _lchown$UNIX2003 21 + .set _lchown$UNIX2003, ___lchown 22 + #endif 23 + 24 + #if defined(__x86_64__) 25 + .globl _lchown 26 + .set _lchown, ___lchown 27 + #endif 28 + 29 + #if defined(__ppc__) 30 + .globl _lchown$UNIX2003 31 + .set _lchown$UNIX2003, ___lchown 32 + #endif 33 + 34 + #if defined(__arm64__) 35 + .globl _lchown 36 + .set _lchown, ___lchown 37 + #endif 38 +
+38
src/kernel/libsyscall/bsdsyscalls/___listen.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_listen 5 + #error "SYS_listen not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___listen) 10 + SYSCALL_NONAME(listen, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___listen, listen, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 + 19 + #if defined(__i386__) 20 + .globl _listen$UNIX2003 21 + .set _listen$UNIX2003, ___listen 22 + #endif 23 + 24 + #if defined(__x86_64__) 25 + .globl _listen 26 + .set _listen, ___listen 27 + #endif 28 + 29 + #if defined(__ppc__) 30 + .globl _listen$UNIX2003 31 + .set _listen$UNIX2003, ___listen 32 + #endif 33 + 34 + #if defined(__arm64__) 35 + .globl _listen 36 + .set _listen, ___listen 37 + #endif 38 +
+18
src/kernel/libsyscall/bsdsyscalls/___log_data.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 16 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_log_data 5 + #error "SYS_log_data not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___log_data) 10 + SYSCALL_NONAME(log_data, 4, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___log_data, log_data, 4, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+69
src/kernel/libsyscall/bsdsyscalls/___lseek.S
··· 1 + /* 2 + * Copyright (c) 1999-2007 Apple Inc. All rights reserved. 3 + * 4 + * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ 5 + * 6 + * This file contains Original Code and/or Modifications of Original Code 7 + * as defined in and that are subject to the Apple Public Source License 8 + * Version 2.0 (the 'License'). You may not use this file except in 9 + * compliance with the License. The rights granted to you under the License 10 + * may not be used to create, or enable the creation or redistribution of, 11 + * unlawful or unlicensed copies of an Apple operating system, or to 12 + * circumvent, violate, or enable the circumvention or violation of, any 13 + * terms of an Apple operating system software license agreement. 14 + * 15 + * Please obtain a copy of the License at 16 + * http://www.opensource.apple.com/apsl/ and read it before using this file. 17 + * 18 + * The Original Code and all software distributed under the License are 19 + * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 20 + * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, 21 + * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, 22 + * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 23 + * Please see the License for the specific language governing rights and 24 + * limitations under the License. 25 + * 26 + * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ 27 + */ 28 + 29 + #include "SYS.h" 30 + 31 + #if defined(__x86_64__) 32 + 33 + __SYSCALL(___lseek, lseek, 3) 34 + 35 + #elif defined(__i386__) 36 + 37 + __SYSCALL_INT(___lseek, lseek, 3) 38 + 39 + #elif defined(__arm__) 40 + 41 + __SYSCALL(___lseek, lseek, 4) 42 + 43 + #elif defined(__arm64__) 44 + 45 + __SYSCALL(___lseek, lseek, 3) 46 + 47 + #else 48 + #error Unsupported architecture 49 + #endif 50 + #if defined(__i386__) 51 + .globl _lseek 52 + .set _lseek, ___lseek 53 + #endif 54 + 55 + #if defined(__x86_64__) 56 + .globl _lseek 57 + .set _lseek, ___lseek 58 + #endif 59 + 60 + #if defined(__ppc__) 61 + .globl _lseek 62 + .set _lseek, ___lseek 63 + #endif 64 + 65 + #if defined(__arm64__) 66 + .globl _lseek 67 + .set _lseek, ___lseek 68 + #endif 69 +
+18
src/kernel/libsyscall/bsdsyscalls/___lstat64_extended.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 16 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_lstat64_extended 5 + #error "SYS_lstat64_extended not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___lstat64_extended) 10 + SYSCALL_NONAME(lstat64_extended, 4, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___lstat64_extended, lstat64_extended, 4, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/___lstat_extended.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 16 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_lstat_extended 5 + #error "SYS_lstat_extended not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___lstat_extended) 10 + SYSCALL_NONAME(lstat_extended, 4, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___lstat_extended, lstat_extended, 4, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+38
src/kernel/libsyscall/bsdsyscalls/___mac_execve.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 16 2 + #include "SYS.h" 3 + 4 + #ifndef SYS___mac_execve 5 + #error "SYS___mac_execve not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___mac_execve) 10 + SYSCALL_NONAME(__mac_execve, 4, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___mac_execve, __mac_execve, 4, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 + 19 + #if defined(__i386__) 20 + .globl ___sandbox_me 21 + .set ___sandbox_me, ___mac_execve 22 + #endif 23 + 24 + #if defined(__x86_64__) 25 + .globl ___sandbox_me 26 + .set ___sandbox_me, ___mac_execve 27 + #endif 28 + 29 + #if defined(__ppc__) 30 + .globl ___sandbox_me 31 + .set ___sandbox_me, ___mac_execve 32 + #endif 33 + 34 + #if defined(__arm64__) 35 + .globl ___sandbox_me 36 + .set ___sandbox_me, ___mac_execve 37 + #endif 38 +
+18
src/kernel/libsyscall/bsdsyscalls/___mac_get_fd.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS___mac_get_fd 5 + #error "SYS___mac_get_fd not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___mac_get_fd) 10 + SYSCALL_NONAME(__mac_get_fd, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___mac_get_fd, __mac_get_fd, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/___mac_get_file.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS___mac_get_file 5 + #error "SYS___mac_get_file not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___mac_get_file) 10 + SYSCALL_NONAME(__mac_get_file, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___mac_get_file, __mac_get_file, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/___mac_get_link.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS___mac_get_link 5 + #error "SYS___mac_get_link not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___mac_get_link) 10 + SYSCALL_NONAME(__mac_get_link, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___mac_get_link, __mac_get_link, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/___mac_get_mount.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS___mac_get_mount 5 + #error "SYS___mac_get_mount not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___mac_get_mount) 10 + SYSCALL_NONAME(__mac_get_mount, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___mac_get_mount, __mac_get_mount, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/___mac_get_pid.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS___mac_get_pid 5 + #error "SYS___mac_get_pid not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___mac_get_pid) 10 + SYSCALL_NONAME(__mac_get_pid, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___mac_get_pid, __mac_get_pid, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/___mac_get_proc.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 4 2 + #include "SYS.h" 3 + 4 + #ifndef SYS___mac_get_proc 5 + #error "SYS___mac_get_proc not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___mac_get_proc) 10 + SYSCALL_NONAME(__mac_get_proc, 1, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___mac_get_proc, __mac_get_proc, 1, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/___mac_getfsstat.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 20 2 + #include "SYS.h" 3 + 4 + #ifndef SYS___mac_getfsstat 5 + #error "SYS___mac_getfsstat not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___mac_getfsstat) 10 + SYSCALL_NONAME(__mac_getfsstat, 5, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___mac_getfsstat, __mac_getfsstat, 5, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+38
src/kernel/libsyscall/bsdsyscalls/___mac_mount.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 20 2 + #include "SYS.h" 3 + 4 + #ifndef SYS___mac_mount 5 + #error "SYS___mac_mount not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___mac_mount) 10 + SYSCALL_NONAME(__mac_mount, 5, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___mac_mount, __mac_mount, 5, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 + 19 + #if defined(__i386__) 20 + .globl ___sandbox_mm 21 + .set ___sandbox_mm, ___mac_mount 22 + #endif 23 + 24 + #if defined(__x86_64__) 25 + .globl ___sandbox_mm 26 + .set ___sandbox_mm, ___mac_mount 27 + #endif 28 + 29 + #if defined(__ppc__) 30 + .globl ___sandbox_mm 31 + .set ___sandbox_mm, ___mac_mount 32 + #endif 33 + 34 + #if defined(__arm64__) 35 + .globl ___sandbox_mm 36 + .set ___sandbox_mm, ___mac_mount 37 + #endif 38 +
+18
src/kernel/libsyscall/bsdsyscalls/___mac_set_fd.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS___mac_set_fd 5 + #error "SYS___mac_set_fd not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___mac_set_fd) 10 + SYSCALL_NONAME(__mac_set_fd, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___mac_set_fd, __mac_set_fd, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/___mac_set_file.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS___mac_set_file 5 + #error "SYS___mac_set_file not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___mac_set_file) 10 + SYSCALL_NONAME(__mac_set_file, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___mac_set_file, __mac_set_file, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/___mac_set_link.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS___mac_set_link 5 + #error "SYS___mac_set_link not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___mac_set_link) 10 + SYSCALL_NONAME(__mac_set_link, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___mac_set_link, __mac_set_link, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+38
src/kernel/libsyscall/bsdsyscalls/___mac_set_proc.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 4 2 + #include "SYS.h" 3 + 4 + #ifndef SYS___mac_set_proc 5 + #error "SYS___mac_set_proc not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___mac_set_proc) 10 + SYSCALL_NONAME(__mac_set_proc, 1, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___mac_set_proc, __mac_set_proc, 1, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 + 19 + #if defined(__i386__) 20 + .globl ___sandbox_msp 21 + .set ___sandbox_msp, ___mac_set_proc 22 + #endif 23 + 24 + #if defined(__x86_64__) 25 + .globl ___sandbox_msp 26 + .set ___sandbox_msp, ___mac_set_proc 27 + #endif 28 + 29 + #if defined(__ppc__) 30 + .globl ___sandbox_msp 31 + .set ___sandbox_msp, ___mac_set_proc 32 + #endif 33 + 34 + #if defined(__arm64__) 35 + .globl ___sandbox_msp 36 + .set ___sandbox_msp, ___mac_set_proc 37 + #endif 38 +
+38
src/kernel/libsyscall/bsdsyscalls/___mac_syscall.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS___mac_syscall 5 + #error "SYS___mac_syscall not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___mac_syscall) 10 + SYSCALL_NONAME(__mac_syscall, 3, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___mac_syscall, __mac_syscall, 3, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 + 19 + #if defined(__i386__) 20 + .globl ___sandbox_ms 21 + .set ___sandbox_ms, ___mac_syscall 22 + #endif 23 + 24 + #if defined(__x86_64__) 25 + .globl ___sandbox_ms 26 + .set ___sandbox_ms, ___mac_syscall 27 + #endif 28 + 29 + #if defined(__ppc__) 30 + .globl ___sandbox_ms 31 + .set ___sandbox_ms, ___mac_syscall 32 + #endif 33 + 34 + #if defined(__arm64__) 35 + .globl ___sandbox_ms 36 + .set ___sandbox_ms, ___mac_syscall 37 + #endif 38 +
+18
src/kernel/libsyscall/bsdsyscalls/___mach_bridge_remote_time.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS___mach_bridge_remote_time 5 + #error "SYS___mach_bridge_remote_time not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___mach_bridge_remote_time) 10 + SYSCALL_NONAME(__mach_bridge_remote_time, 1, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___mach_bridge_remote_time, __mach_bridge_remote_time, 1, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/___memorystatus_available_memory.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 0 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_memorystatus_available_memory 5 + #error "SYS_memorystatus_available_memory not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___memorystatus_available_memory) 10 + SYSCALL_NONAME(memorystatus_available_memory, 0, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___memorystatus_available_memory, memorystatus_available_memory, 0, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/___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(__arm64__) 9 + MI_ENTRY_POINT(___microstackshot) 10 + SYSCALL_NONAME(microstackshot, 3, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___microstackshot, microstackshot, 3, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/___mkdir_extended.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 20 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_mkdir_extended 5 + #error "SYS_mkdir_extended not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___mkdir_extended) 10 + SYSCALL_NONAME(mkdir_extended, 5, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___mkdir_extended, mkdir_extended, 5, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/___mkfifo_extended.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 20 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_mkfifo_extended 5 + #error "SYS_mkfifo_extended not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___mkfifo_extended) 10 + SYSCALL_NONAME(mkfifo_extended, 5, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___mkfifo_extended, mkfifo_extended, 5, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+29
src/kernel/libsyscall/bsdsyscalls/___mmap.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 28 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_mmap 5 + #error "SYS_mmap not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___mmap) 10 + ZERO_EXTEND(1) 11 + SYSCALL_NONAME(mmap, 6, cerror_nocancel) 12 + ret 13 + #else 14 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 15 + __SYSCALL2(___mmap, mmap, 6, cerror_nocancel) 16 + #endif 17 + 18 + #endif 19 + 20 + #if defined(__i386__) 21 + .globl _mmap 22 + .set _mmap, ___mmap 23 + #endif 24 + 25 + #if defined(__ppc__) 26 + .globl _mmap 27 + .set _mmap, ___mmap 28 + #endif 29 +
+39
src/kernel/libsyscall/bsdsyscalls/___mprotect.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_mprotect 5 + #error "SYS_mprotect not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___mprotect) 10 + ZERO_EXTEND(1) 11 + SYSCALL_NONAME(mprotect, 3, cerror_nocancel) 12 + ret 13 + #else 14 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 15 + __SYSCALL2(___mprotect, mprotect, 3, cerror_nocancel) 16 + #endif 17 + 18 + #endif 19 + 20 + #if defined(__i386__) 21 + .globl _mprotect$UNIX2003 22 + .set _mprotect$UNIX2003, ___mprotect 23 + #endif 24 + 25 + #if defined(__x86_64__) 26 + .globl _mprotect 27 + .set _mprotect, ___mprotect 28 + #endif 29 + 30 + #if defined(__ppc__) 31 + .globl _mprotect$UNIX2003 32 + .set _mprotect$UNIX2003, ___mprotect 33 + #endif 34 + 35 + #if defined(__arm64__) 36 + .globl _mprotect 37 + .set _mprotect, ___mprotect 38 + #endif 39 +
+38
src/kernel/libsyscall/bsdsyscalls/___msgctl.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_msgctl 5 + #error "SYS_msgctl not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___msgctl) 10 + SYSCALL_NONAME(msgctl, 3, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___msgctl, msgctl, 3, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 + 19 + #if defined(__i386__) 20 + .globl _msgctl$UNIX2003 21 + .set _msgctl$UNIX2003, ___msgctl 22 + #endif 23 + 24 + #if defined(__x86_64__) 25 + .globl _msgctl 26 + .set _msgctl, ___msgctl 27 + #endif 28 + 29 + #if defined(__ppc__) 30 + .globl _msgctl$UNIX2003 31 + .set _msgctl$UNIX2003, ___msgctl 32 + #endif 33 + 34 + #if defined(__arm64__) 35 + .globl _msgctl 36 + .set _msgctl, ___msgctl 37 + #endif 38 +
+44
src/kernel/libsyscall/bsdsyscalls/___msgrcv_nocancel.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 20 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_msgrcv_nocancel 5 + #error "SYS_msgrcv_nocancel not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___msgrcv_nocancel) 10 + ZERO_EXTEND(2) 11 + SIGN_EXTEND(3) 12 + SYSCALL_NONAME(msgrcv_nocancel, 5, cerror_nocancel) 13 + ret 14 + #else 15 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 16 + __SYSCALL2(___msgrcv_nocancel, msgrcv_nocancel, 5, cerror_nocancel) 17 + #endif 18 + 19 + #endif 20 + 21 + #if defined(__i386__) 22 + .globl _msgrcv 23 + .set _msgrcv, ___msgrcv_nocancel 24 + .globl _msgrcv$NOCANCEL$UNIX2003 25 + .set _msgrcv$NOCANCEL$UNIX2003, ___msgrcv_nocancel 26 + #endif 27 + 28 + #if defined(__x86_64__) 29 + .globl _msgrcv$NOCANCEL 30 + .set _msgrcv$NOCANCEL, ___msgrcv_nocancel 31 + #endif 32 + 33 + #if defined(__ppc__) 34 + .globl _msgrcv 35 + .set _msgrcv, ___msgrcv_nocancel 36 + .globl _msgrcv$NOCANCEL$UNIX2003 37 + .set _msgrcv$NOCANCEL$UNIX2003, ___msgrcv_nocancel 38 + #endif 39 + 40 + #if defined(__arm64__) 41 + .globl _msgrcv$NOCANCEL 42 + .set _msgrcv$NOCANCEL, ___msgrcv_nocancel 43 + #endif 44 +
+43
src/kernel/libsyscall/bsdsyscalls/___msgsnd_nocancel.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 16 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_msgsnd_nocancel 5 + #error "SYS_msgsnd_nocancel not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___msgsnd_nocancel) 10 + ZERO_EXTEND(2) 11 + SYSCALL_NONAME(msgsnd_nocancel, 4, cerror_nocancel) 12 + ret 13 + #else 14 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 15 + __SYSCALL2(___msgsnd_nocancel, msgsnd_nocancel, 4, cerror_nocancel) 16 + #endif 17 + 18 + #endif 19 + 20 + #if defined(__i386__) 21 + .globl _msgsnd 22 + .set _msgsnd, ___msgsnd_nocancel 23 + .globl _msgsnd$NOCANCEL$UNIX2003 24 + .set _msgsnd$NOCANCEL$UNIX2003, ___msgsnd_nocancel 25 + #endif 26 + 27 + #if defined(__x86_64__) 28 + .globl _msgsnd$NOCANCEL 29 + .set _msgsnd$NOCANCEL, ___msgsnd_nocancel 30 + #endif 31 + 32 + #if defined(__ppc__) 33 + .globl _msgsnd 34 + .set _msgsnd, ___msgsnd_nocancel 35 + .globl _msgsnd$NOCANCEL$UNIX2003 36 + .set _msgsnd$NOCANCEL$UNIX2003, ___msgsnd_nocancel 37 + #endif 38 + 39 + #if defined(__arm64__) 40 + .globl _msgsnd$NOCANCEL 41 + .set _msgsnd$NOCANCEL, ___msgsnd_nocancel 42 + #endif 43 +
+33
src/kernel/libsyscall/bsdsyscalls/___msgsys.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 20 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_msgsys 5 + #error "SYS_msgsys not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___msgsys) 10 + SYSCALL_NONAME(msgsys, 5, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___msgsys, msgsys, 5, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 + 19 + #if defined(__i386__) 20 + .globl _msgsys 21 + .set _msgsys, ___msgsys 22 + #endif 23 + 24 + #if defined(__x86_64__) 25 + .globl _msgsys 26 + .set _msgsys, ___msgsys 27 + #endif 28 + 29 + #if defined(__ppc__) 30 + .globl _msgsys 31 + .set _msgsys, ___msgsys 32 + #endif 33 +
+39
src/kernel/libsyscall/bsdsyscalls/___msync.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_msync 5 + #error "SYS_msync not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___msync) 10 + ZERO_EXTEND(1) 11 + SYSCALL_NONAME(msync, 3, cerror) 12 + ret 13 + #else 14 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 15 + __SYSCALL2(___msync, msync, 3, cerror) 16 + #endif 17 + 18 + #endif 19 + 20 + #if defined(__i386__) 21 + .globl _msync$UNIX2003 22 + .set _msync$UNIX2003, ___msync 23 + #endif 24 + 25 + #if defined(__x86_64__) 26 + .globl _msync 27 + .set _msync, ___msync 28 + #endif 29 + 30 + #if defined(__ppc__) 31 + .globl _msync$UNIX2003 32 + .set _msync$UNIX2003, ___msync 33 + #endif 34 + 35 + #if defined(__arm64__) 36 + .globl _msync 37 + .set _msync, ___msync 38 + #endif 39 +
+39
src/kernel/libsyscall/bsdsyscalls/___msync_nocancel.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_msync_nocancel 5 + #error "SYS_msync_nocancel not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___msync_nocancel) 10 + ZERO_EXTEND(1) 11 + SYSCALL_NONAME(msync_nocancel, 3, cerror_nocancel) 12 + ret 13 + #else 14 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 15 + __SYSCALL2(___msync_nocancel, msync_nocancel, 3, cerror_nocancel) 16 + #endif 17 + 18 + #endif 19 + 20 + #if defined(__i386__) 21 + .globl _msync$NOCANCEL$UNIX2003 22 + .set _msync$NOCANCEL$UNIX2003, ___msync_nocancel 23 + #endif 24 + 25 + #if defined(__x86_64__) 26 + .globl _msync$NOCANCEL 27 + .set _msync$NOCANCEL, ___msync_nocancel 28 + #endif 29 + 30 + #if defined(__ppc__) 31 + .globl _msync$NOCANCEL$UNIX2003 32 + .set _msync$NOCANCEL$UNIX2003, ___msync_nocancel 33 + #endif 34 + 35 + #if defined(__arm64__) 36 + .globl _msync$NOCANCEL 37 + .set _msync$NOCANCEL, ___msync_nocancel 38 + #endif 39 +
+19
src/kernel/libsyscall/bsdsyscalls/___munmap.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_munmap 5 + #error "SYS_munmap not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___munmap) 10 + ZERO_EXTEND(1) 11 + SYSCALL_NONAME(munmap, 2, cerror_nocancel) 12 + ret 13 + #else 14 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 15 + __SYSCALL2(___munmap, munmap, 2, cerror_nocancel) 16 + #endif 17 + 18 + #endif 19 +
+18
src/kernel/libsyscall/bsdsyscalls/___old_semwait_signal.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 20 2 + #include "SYS.h" 3 + 4 + #ifndef SYS___old_semwait_signal 5 + #error "SYS___old_semwait_signal not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___old_semwait_signal) 10 + SYSCALL_NONAME(__old_semwait_signal, 5, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___old_semwait_signal, __old_semwait_signal, 5, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+30
src/kernel/libsyscall/bsdsyscalls/___open.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_open 5 + #error "SYS_open not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___open) 10 + SYSCALL_NONAME(open, 3, cerror) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___open, open, 3, cerror) 15 + #endif 16 + 17 + #endif 18 + 19 + #if defined(__i386__) 20 + .globl _open 21 + .set _open, ___open 22 + .globl _open$UNIX2003 23 + .set _open$UNIX2003, ___open 24 + #endif 25 + 26 + #if defined(__ppc__) 27 + .globl _open$UNIX2003 28 + .set _open$UNIX2003, ___open 29 + #endif 30 +
+18
src/kernel/libsyscall/bsdsyscalls/___open_dprotected_np.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 20 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_open_dprotected_np 5 + #error "SYS_open_dprotected_np not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___open_dprotected_np) 10 + SYSCALL_NONAME(open_dprotected_np, 5, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___open_dprotected_np, open_dprotected_np, 5, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/___open_extended.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 24 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_open_extended 5 + #error "SYS_open_extended not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___open_extended) 10 + SYSCALL_NONAME(open_extended, 6, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___open_extended, open_extended, 6, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+28
src/kernel/libsyscall/bsdsyscalls/___open_nocancel.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_open_nocancel 5 + #error "SYS_open_nocancel not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___open_nocancel) 10 + SYSCALL_NONAME(open_nocancel, 3, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___open_nocancel, open_nocancel, 3, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 + 19 + #if defined(__i386__) 20 + .globl _open$NOCANCEL$UNIX2003 21 + .set _open$NOCANCEL$UNIX2003, ___open_nocancel 22 + #endif 23 + 24 + #if defined(__ppc__) 25 + .globl _open$NOCANCEL$UNIX2003 26 + .set _open$NOCANCEL$UNIX2003, ___open_nocancel 27 + #endif 28 +
+28
src/kernel/libsyscall/bsdsyscalls/___openat.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 16 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_openat 5 + #error "SYS_openat not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___openat) 10 + SYSCALL_NONAME(openat, 4, cerror) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___openat, openat, 4, cerror) 15 + #endif 16 + 17 + #endif 18 + 19 + #if defined(__i386__) 20 + .globl _openat 21 + .set _openat, ___openat 22 + #endif 23 + 24 + #if defined(__ppc__) 25 + .globl _openat 26 + .set _openat, ___openat 27 + #endif 28 +
+28
src/kernel/libsyscall/bsdsyscalls/___openat_nocancel.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 16 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_openat_nocancel 5 + #error "SYS_openat_nocancel not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___openat_nocancel) 10 + SYSCALL_NONAME(openat_nocancel, 4, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___openat_nocancel, openat_nocancel, 4, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 + 19 + #if defined(__i386__) 20 + .globl _openat$NOCANCEL 21 + .set _openat$NOCANCEL, ___openat_nocancel 22 + #endif 23 + 24 + #if defined(__ppc__) 25 + .globl _openat$NOCANCEL 26 + .set _openat$NOCANCEL, ___openat_nocancel 27 + #endif 28 +
+18
src/kernel/libsyscall/bsdsyscalls/___persona.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 24 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(__arm64__) 9 + MI_ENTRY_POINT(___persona) 10 + SYSCALL_NONAME(persona, 6, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___persona, persona, 6, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+90
src/kernel/libsyscall/bsdsyscalls/___pipe.S
··· 1 + /* 2 + * Copyright (c) 1999-2007 Apple Inc. All rights reserved. 3 + * 4 + * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ 5 + * 6 + * This file contains Original Code and/or Modifications of Original Code 7 + * as defined in and that are subject to the Apple Public Source License 8 + * Version 2.0 (the 'License'). You may not use this file except in 9 + * compliance with the License. The rights granted to you under the License 10 + * may not be used to create, or enable the creation or redistribution of, 11 + * unlawful or unlicensed copies of an Apple operating system, or to 12 + * circumvent, violate, or enable the circumvention or violation of, any 13 + * terms of an Apple operating system software license agreement. 14 + * 15 + * Please obtain a copy of the License at 16 + * http://www.opensource.apple.com/apsl/ and read it before using this file. 17 + * 18 + * The Original Code and all software distributed under the License are 19 + * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 20 + * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, 21 + * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, 22 + * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 23 + * Please see the License for the specific language governing rights and 24 + * limitations under the License. 25 + * 26 + * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ 27 + */ 28 + /* Copyright (c) 1992 NeXT Computer, Inc. All rights reserved. */ 29 + 30 + #include "SYS.h" 31 + 32 + #if defined(__i386__) 33 + 34 + PSEUDO_INT(___pipe, pipe, 0) 35 + movl 4(%esp),%ecx 36 + movl %eax,(%ecx) 37 + movl %edx,4(%ecx) 38 + xorl %eax,%eax 39 + ret 40 + 41 + #elif defined(__x86_64__) 42 + 43 + PSEUDO(___pipe, pipe, 0, cerror_nocancel) 44 + movl %eax, (%rdi) 45 + movl %edx, 4(%rdi) 46 + xorl %eax, %eax 47 + ret 48 + 49 + #elif defined(__arm__) 50 + 51 + MI_ENTRY_POINT(___pipe) 52 + mov r3,r0 // save fildes across syscall 53 + SYSCALL_NONAME(pipe, 0, cerror_nocancel) 54 + str r0, [r3, #0] 55 + str r1, [r3, #4] 56 + mov r0,#0 57 + bx lr 58 + 59 + #elif defined(__arm64__) 60 + 61 + MI_ENTRY_POINT(___pipe) 62 + mov x9, x0 // Stash FD array 63 + SYSCALL_NONAME(pipe, 0, cerror_nocancel) 64 + stp w0, w1, [x9] // Save results 65 + mov x0, #0 // Success 66 + ret // Done 67 + 68 + #else 69 + #error Unsupported architecture 70 + #endif 71 + #if defined(__i386__) 72 + .globl _pipe 73 + .set _pipe, ___pipe 74 + #endif 75 + 76 + #if defined(__x86_64__) 77 + .globl _pipe 78 + .set _pipe, ___pipe 79 + #endif 80 + 81 + #if defined(__ppc__) 82 + .globl _pipe 83 + .set _pipe, ___pipe 84 + #endif 85 + 86 + #if defined(__arm64__) 87 + .globl _pipe 88 + .set _pipe, ___pipe 89 + #endif 90 +
+42
src/kernel/libsyscall/bsdsyscalls/___poll_nocancel.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_poll_nocancel 5 + #error "SYS_poll_nocancel not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___poll_nocancel) 10 + SYSCALL_NONAME(poll_nocancel, 3, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___poll_nocancel, poll_nocancel, 3, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 + 19 + #if defined(__i386__) 20 + .globl _poll 21 + .set _poll, ___poll_nocancel 22 + .globl _poll$NOCANCEL$UNIX2003 23 + .set _poll$NOCANCEL$UNIX2003, ___poll_nocancel 24 + #endif 25 + 26 + #if defined(__x86_64__) 27 + .globl _poll$NOCANCEL 28 + .set _poll$NOCANCEL, ___poll_nocancel 29 + #endif 30 + 31 + #if defined(__ppc__) 32 + .globl _poll 33 + .set _poll, ___poll_nocancel 34 + .globl _poll$NOCANCEL$UNIX2003 35 + .set _poll$NOCANCEL$UNIX2003, ___poll_nocancel 36 + #endif 37 + 38 + #if defined(__arm64__) 39 + .globl _poll$NOCANCEL 40 + .set _poll$NOCANCEL, ___poll_nocancel 41 + #endif 42 +
+18
src/kernel/libsyscall/bsdsyscalls/___posix_spawn.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 20 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_posix_spawn 5 + #error "SYS_posix_spawn not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___posix_spawn) 10 + SYSCALL_NONAME(posix_spawn, 5, cerror) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___posix_spawn, posix_spawn, 5, cerror) 15 + #endif 16 + 17 + #endif 18 +
+43
src/kernel/libsyscall/bsdsyscalls/___pread_nocancel.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 20 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_pread_nocancel 5 + #error "SYS_pread_nocancel not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___pread_nocancel) 10 + ZERO_EXTEND(2) 11 + SYSCALL_NONAME(pread_nocancel, 4, cerror_nocancel) 12 + ret 13 + #else 14 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 15 + __SYSCALL2(___pread_nocancel, pread_nocancel, 4, cerror_nocancel) 16 + #endif 17 + 18 + #endif 19 + 20 + #if defined(__i386__) 21 + .globl _pread 22 + .set _pread, ___pread_nocancel 23 + .globl _pread$NOCANCEL$UNIX2003 24 + .set _pread$NOCANCEL$UNIX2003, ___pread_nocancel 25 + #endif 26 + 27 + #if defined(__x86_64__) 28 + .globl _pread$NOCANCEL 29 + .set _pread$NOCANCEL, ___pread_nocancel 30 + #endif 31 + 32 + #if defined(__ppc__) 33 + .globl _pread 34 + .set _pread, ___pread_nocancel 35 + .globl _pread$NOCANCEL$UNIX2003 36 + .set _pread$NOCANCEL$UNIX2003, ___pread_nocancel 37 + #endif 38 + 39 + #if defined(__arm64__) 40 + .globl _pread$NOCANCEL 41 + .set _pread$NOCANCEL, ___pread_nocancel 42 + #endif 43 +
+35
src/kernel/libsyscall/bsdsyscalls/___preadv_nocancel.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 20 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_preadv_nocancel 5 + #error "SYS_preadv_nocancel not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___preadv_nocancel) 10 + SYSCALL_NONAME(preadv_nocancel, 4, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___preadv_nocancel, preadv_nocancel, 4, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 + 19 + #if defined(__i386__) 20 + .globl _preadv 21 + .set _preadv, ___preadv_nocancel 22 + .globl _preadv$NOCANCEL 23 + .set _preadv$NOCANCEL, ___preadv_nocancel 24 + #endif 25 + 26 + #if defined(__x86_64__) 27 + .globl _preadv$NOCANCEL 28 + .set _preadv$NOCANCEL, ___preadv_nocancel 29 + #endif 30 + 31 + #if defined(__arm64__) 32 + .globl _preadv$NOCANCEL 33 + .set _preadv$NOCANCEL, ___preadv_nocancel 34 + #endif 35 +
+18
src/kernel/libsyscall/bsdsyscalls/___proc_info.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 28 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_proc_info 5 + #error "SYS_proc_info not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___proc_info) 10 + SYSCALL_NONAME(proc_info, 6, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___proc_info, proc_info, 6, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/___proc_info_extended_id.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 40 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_proc_info_extended_id 5 + #error "SYS_proc_info_extended_id not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___proc_info_extended_id) 10 + SYSCALL_NONAME(proc_info_extended_id, 8, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___proc_info_extended_id, proc_info_extended_id, 8, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/___process_policy.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 32 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_process_policy 5 + #error "SYS_process_policy not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___process_policy) 10 + SYSCALL_NONAME(process_policy, 7, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___process_policy, process_policy, 7, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/___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(__arm64__) 9 + MI_ENTRY_POINT(___pselect) 10 + SYSCALL_NONAME(pselect, 6, cerror) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___pselect, pselect, 6, cerror) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/___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(__arm64__) 9 + MI_ENTRY_POINT(___pselect_nocancel) 10 + SYSCALL_NONAME(pselect_nocancel, 6, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___pselect_nocancel, pselect_nocancel, 6, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/___psynch_cvbroad.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 44 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_psynch_cvbroad 5 + #error "SYS_psynch_cvbroad not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___psynch_cvbroad) 10 + SYSCALL_NONAME(psynch_cvbroad, 7, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___psynch_cvbroad, psynch_cvbroad, 7, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/___psynch_cvclrprepost.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 28 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_psynch_cvclrprepost 5 + #error "SYS_psynch_cvclrprepost not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___psynch_cvclrprepost) 10 + SYSCALL_NONAME(psynch_cvclrprepost, 7, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___psynch_cvclrprepost, psynch_cvclrprepost, 7, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/___psynch_cvsignal.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 44 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_psynch_cvsignal 5 + #error "SYS_psynch_cvsignal not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___psynch_cvsignal) 10 + SYSCALL_NONAME(psynch_cvsignal, 8, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___psynch_cvsignal, psynch_cvsignal, 8, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/___psynch_cvwait.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 44 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_psynch_cvwait 5 + #error "SYS_psynch_cvwait not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___psynch_cvwait) 10 + SYSCALL_NONAME(psynch_cvwait, 8, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___psynch_cvwait, psynch_cvwait, 8, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/___psynch_mutexdrop.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 24 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_psynch_mutexdrop 5 + #error "SYS_psynch_mutexdrop not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___psynch_mutexdrop) 10 + SYSCALL_NONAME(psynch_mutexdrop, 5, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___psynch_mutexdrop, psynch_mutexdrop, 5, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/___psynch_mutexwait.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 24 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_psynch_mutexwait 5 + #error "SYS_psynch_mutexwait not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___psynch_mutexwait) 10 + SYSCALL_NONAME(psynch_mutexwait, 5, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___psynch_mutexwait, psynch_mutexwait, 5, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/___psynch_rw_downgrade.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 20 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_psynch_rw_downgrade 5 + #error "SYS_psynch_rw_downgrade not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___psynch_rw_downgrade) 10 + SYSCALL_NONAME(psynch_rw_downgrade, 5, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___psynch_rw_downgrade, psynch_rw_downgrade, 5, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/___psynch_rw_longrdlock.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 20 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_psynch_rw_longrdlock 5 + #error "SYS_psynch_rw_longrdlock not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___psynch_rw_longrdlock) 10 + SYSCALL_NONAME(psynch_rw_longrdlock, 5, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___psynch_rw_longrdlock, psynch_rw_longrdlock, 5, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/___psynch_rw_rdlock.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 20 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_psynch_rw_rdlock 5 + #error "SYS_psynch_rw_rdlock not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___psynch_rw_rdlock) 10 + SYSCALL_NONAME(psynch_rw_rdlock, 5, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___psynch_rw_rdlock, psynch_rw_rdlock, 5, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/___psynch_rw_unlock.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 20 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_psynch_rw_unlock 5 + #error "SYS_psynch_rw_unlock not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___psynch_rw_unlock) 10 + SYSCALL_NONAME(psynch_rw_unlock, 5, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___psynch_rw_unlock, psynch_rw_unlock, 5, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/___psynch_rw_unlock2.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 20 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_psynch_rw_unlock2 5 + #error "SYS_psynch_rw_unlock2 not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___psynch_rw_unlock2) 10 + SYSCALL_NONAME(psynch_rw_unlock2, 5, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___psynch_rw_unlock2, psynch_rw_unlock2, 5, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/___psynch_rw_upgrade.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 20 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_psynch_rw_upgrade 5 + #error "SYS_psynch_rw_upgrade not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___psynch_rw_upgrade) 10 + SYSCALL_NONAME(psynch_rw_upgrade, 5, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___psynch_rw_upgrade, psynch_rw_upgrade, 5, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/___psynch_rw_wrlock.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 20 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_psynch_rw_wrlock 5 + #error "SYS_psynch_rw_wrlock not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___psynch_rw_wrlock) 10 + SYSCALL_NONAME(psynch_rw_wrlock, 5, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___psynch_rw_wrlock, psynch_rw_wrlock, 5, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/___psynch_rw_yieldwrlock.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 20 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_psynch_rw_yieldwrlock 5 + #error "SYS_psynch_rw_yieldwrlock not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___psynch_rw_yieldwrlock) 10 + SYSCALL_NONAME(psynch_rw_yieldwrlock, 5, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___psynch_rw_yieldwrlock, psynch_rw_yieldwrlock, 5, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/___pthread_canceled.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 4 2 + #include "SYS.h" 3 + 4 + #ifndef SYS___pthread_canceled 5 + #error "SYS___pthread_canceled not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___pthread_canceled) 10 + SYSCALL_NONAME(__pthread_canceled, 1, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___pthread_canceled, __pthread_canceled, 1, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/___pthread_chdir.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 4 2 + #include "SYS.h" 3 + 4 + #ifndef SYS___pthread_chdir 5 + #error "SYS___pthread_chdir not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___pthread_chdir) 10 + SYSCALL_NONAME(__pthread_chdir, 1, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___pthread_chdir, __pthread_chdir, 1, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/___pthread_fchdir.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 4 2 + #include "SYS.h" 3 + 4 + #ifndef SYS___pthread_fchdir 5 + #error "SYS___pthread_fchdir not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___pthread_fchdir) 10 + SYSCALL_NONAME(__pthread_fchdir, 1, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___pthread_fchdir, __pthread_fchdir, 1, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/___pthread_kill.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS___pthread_kill 5 + #error "SYS___pthread_kill not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___pthread_kill) 10 + SYSCALL_NONAME(__pthread_kill, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___pthread_kill, __pthread_kill, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/___pthread_markcancel.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 4 2 + #include "SYS.h" 3 + 4 + #ifndef SYS___pthread_markcancel 5 + #error "SYS___pthread_markcancel not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___pthread_markcancel) 10 + SYSCALL_NONAME(__pthread_markcancel, 1, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___pthread_markcancel, __pthread_markcancel, 1, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/___pthread_sigmask.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS___pthread_sigmask 5 + #error "SYS___pthread_sigmask not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___pthread_sigmask) 10 + SYSCALL_NONAME(__pthread_sigmask, 3, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___pthread_sigmask, __pthread_sigmask, 3, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+94
src/kernel/libsyscall/bsdsyscalls/___ptrace.S
··· 1 + /* 2 + * Copyright (c) 1999-2007 Apple Inc. All rights reserved. 3 + * 4 + * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ 5 + * 6 + * This file contains Original Code and/or Modifications of Original Code 7 + * as defined in and that are subject to the Apple Public Source License 8 + * Version 2.0 (the 'License'). You may not use this file except in 9 + * compliance with the License. The rights granted to you under the License 10 + * may not be used to create, or enable the creation or redistribution of, 11 + * unlawful or unlicensed copies of an Apple operating system, or to 12 + * circumvent, violate, or enable the circumvention or violation of, any 13 + * terms of an Apple operating system software license agreement. 14 + * 15 + * Please obtain a copy of the License at 16 + * http://www.opensource.apple.com/apsl/ and read it before using this file. 17 + * 18 + * The Original Code and all software distributed under the License are 19 + * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 20 + * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, 21 + * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, 22 + * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 23 + * Please see the License for the specific language governing rights and 24 + * limitations under the License. 25 + * 26 + * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ 27 + */ 28 + /* Copyright (c) 1992 NeXT Computer, Inc. All rights reserved. */ 29 + 30 + #include "SYS.h" 31 + 32 + #if defined(__i386__) 33 + 34 + .globl _errno 35 + 36 + LEAF(___ptrace, 0) 37 + xorl %eax,%eax 38 + REG_TO_EXTERN(%eax,_errno) 39 + UNIX_SYSCALL_NONAME(ptrace, 4, cerror) 40 + ret 41 + 42 + #elif defined(__x86_64__) 43 + 44 + .globl _errno 45 + 46 + LEAF(___ptrace, 0) 47 + xorq %rax,%rax 48 + PICIFY(_errno) 49 + movl %eax,(%r11) 50 + UNIX_SYSCALL_NONAME(ptrace, 4, cerror) 51 + ret 52 + 53 + #elif defined(__arm__) 54 + 55 + MI_ENTRY_POINT(___ptrace) 56 + MI_GET_ADDRESS(ip,_errno) 57 + str r8, [sp, #-4]! 58 + mov r8, #0 59 + str r8, [ip] 60 + ldr r8, [sp], #4 61 + SYSCALL_NONAME(ptrace, 4, cerror) 62 + bx lr 63 + 64 + #elif defined(__arm64__) 65 + 66 + MI_ENTRY_POINT(___ptrace) 67 + MI_GET_ADDRESS(x9,_errno) 68 + str wzr, [x9] 69 + SYSCALL_NONAME(ptrace, 4, cerror) 70 + ret 71 + 72 + #else 73 + #error Unsupported architecture 74 + #endif 75 + #if defined(__i386__) 76 + .globl _ptrace 77 + .set _ptrace, ___ptrace 78 + #endif 79 + 80 + #if defined(__x86_64__) 81 + .globl _ptrace 82 + .set _ptrace, ___ptrace 83 + #endif 84 + 85 + #if defined(__ppc__) 86 + .globl _ptrace 87 + .set _ptrace, ___ptrace 88 + #endif 89 + 90 + #if defined(__arm64__) 91 + .globl _ptrace 92 + .set _ptrace, ___ptrace 93 + #endif 94 +
+43
src/kernel/libsyscall/bsdsyscalls/___pwrite_nocancel.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 20 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_pwrite_nocancel 5 + #error "SYS_pwrite_nocancel not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___pwrite_nocancel) 10 + ZERO_EXTEND(2) 11 + SYSCALL_NONAME(pwrite_nocancel, 4, cerror_nocancel) 12 + ret 13 + #else 14 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 15 + __SYSCALL2(___pwrite_nocancel, pwrite_nocancel, 4, cerror_nocancel) 16 + #endif 17 + 18 + #endif 19 + 20 + #if defined(__i386__) 21 + .globl _pwrite 22 + .set _pwrite, ___pwrite_nocancel 23 + .globl _pwrite$NOCANCEL$UNIX2003 24 + .set _pwrite$NOCANCEL$UNIX2003, ___pwrite_nocancel 25 + #endif 26 + 27 + #if defined(__x86_64__) 28 + .globl _pwrite$NOCANCEL 29 + .set _pwrite$NOCANCEL, ___pwrite_nocancel 30 + #endif 31 + 32 + #if defined(__ppc__) 33 + .globl _pwrite 34 + .set _pwrite, ___pwrite_nocancel 35 + .globl _pwrite$NOCANCEL$UNIX2003 36 + .set _pwrite$NOCANCEL$UNIX2003, ___pwrite_nocancel 37 + #endif 38 + 39 + #if defined(__arm64__) 40 + .globl _pwrite$NOCANCEL 41 + .set _pwrite$NOCANCEL, ___pwrite_nocancel 42 + #endif 43 +
+35
src/kernel/libsyscall/bsdsyscalls/___pwritev_nocancel.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 20 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_pwritev_nocancel 5 + #error "SYS_pwritev_nocancel not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___pwritev_nocancel) 10 + SYSCALL_NONAME(pwritev_nocancel, 4, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___pwritev_nocancel, pwritev_nocancel, 4, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 + 19 + #if defined(__i386__) 20 + .globl _pwritev 21 + .set _pwritev, ___pwritev_nocancel 22 + .globl _pwritev$NOCANCEL 23 + .set _pwritev$NOCANCEL, ___pwritev_nocancel 24 + #endif 25 + 26 + #if defined(__x86_64__) 27 + .globl _pwritev$NOCANCEL 28 + .set _pwritev$NOCANCEL, ___pwritev_nocancel 29 + #endif 30 + 31 + #if defined(__arm64__) 32 + .globl _pwritev$NOCANCEL 33 + .set _pwritev$NOCANCEL, ___pwritev_nocancel 34 + #endif 35 +
+43
src/kernel/libsyscall/bsdsyscalls/___read_nocancel.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_read_nocancel 5 + #error "SYS_read_nocancel not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___read_nocancel) 10 + ZERO_EXTEND(2) 11 + SYSCALL_NONAME(read_nocancel, 3, cerror_nocancel) 12 + ret 13 + #else 14 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 15 + __SYSCALL2(___read_nocancel, read_nocancel, 3, cerror_nocancel) 16 + #endif 17 + 18 + #endif 19 + 20 + #if defined(__i386__) 21 + .globl _read 22 + .set _read, ___read_nocancel 23 + .globl _read$NOCANCEL$UNIX2003 24 + .set _read$NOCANCEL$UNIX2003, ___read_nocancel 25 + #endif 26 + 27 + #if defined(__x86_64__) 28 + .globl _read$NOCANCEL 29 + .set _read$NOCANCEL, ___read_nocancel 30 + #endif 31 + 32 + #if defined(__ppc__) 33 + .globl _read 34 + .set _read, ___read_nocancel 35 + .globl _read$NOCANCEL$UNIX2003 36 + .set _read$NOCANCEL$UNIX2003, ___read_nocancel 37 + #endif 38 + 39 + #if defined(__arm64__) 40 + .globl _read$NOCANCEL 41 + .set _read$NOCANCEL, ___read_nocancel 42 + #endif 43 +
+42
src/kernel/libsyscall/bsdsyscalls/___readv_nocancel.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_readv_nocancel 5 + #error "SYS_readv_nocancel not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___readv_nocancel) 10 + SYSCALL_NONAME(readv_nocancel, 3, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___readv_nocancel, readv_nocancel, 3, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 + 19 + #if defined(__i386__) 20 + .globl _readv 21 + .set _readv, ___readv_nocancel 22 + .globl _readv$NOCANCEL$UNIX2003 23 + .set _readv$NOCANCEL$UNIX2003, ___readv_nocancel 24 + #endif 25 + 26 + #if defined(__x86_64__) 27 + .globl _readv$NOCANCEL 28 + .set _readv$NOCANCEL, ___readv_nocancel 29 + #endif 30 + 31 + #if defined(__ppc__) 32 + .globl _readv 33 + .set _readv, ___readv_nocancel 34 + .globl _readv$NOCANCEL$UNIX2003 35 + .set _readv$NOCANCEL$UNIX2003, ___readv_nocancel 36 + #endif 37 + 38 + #if defined(__arm64__) 39 + .globl _readv$NOCANCEL 40 + .set _readv$NOCANCEL, ___readv_nocancel 41 + #endif 42 +
+18
src/kernel/libsyscall/bsdsyscalls/___reboot.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_reboot 5 + #error "SYS_reboot not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___reboot) 10 + SYSCALL_NONAME(reboot, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___reboot, reboot, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+39
src/kernel/libsyscall/bsdsyscalls/___recvfrom.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 24 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_recvfrom 5 + #error "SYS_recvfrom not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___recvfrom) 10 + ZERO_EXTEND(2) 11 + SYSCALL_NONAME(recvfrom, 6, cerror) 12 + ret 13 + #else 14 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 15 + __SYSCALL2(___recvfrom, recvfrom, 6, cerror) 16 + #endif 17 + 18 + #endif 19 + 20 + #if defined(__i386__) 21 + .globl _recvfrom$UNIX2003 22 + .set _recvfrom$UNIX2003, ___recvfrom 23 + #endif 24 + 25 + #if defined(__x86_64__) 26 + .globl _recvfrom 27 + .set _recvfrom, ___recvfrom 28 + #endif 29 + 30 + #if defined(__ppc__) 31 + .globl _recvfrom$UNIX2003 32 + .set _recvfrom$UNIX2003, ___recvfrom 33 + #endif 34 + 35 + #if defined(__arm64__) 36 + .globl _recvfrom 37 + .set _recvfrom, ___recvfrom 38 + #endif 39 +
+39
src/kernel/libsyscall/bsdsyscalls/___recvfrom_nocancel.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 24 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_recvfrom_nocancel 5 + #error "SYS_recvfrom_nocancel not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___recvfrom_nocancel) 10 + ZERO_EXTEND(2) 11 + SYSCALL_NONAME(recvfrom_nocancel, 6, cerror_nocancel) 12 + ret 13 + #else 14 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 15 + __SYSCALL2(___recvfrom_nocancel, recvfrom_nocancel, 6, cerror_nocancel) 16 + #endif 17 + 18 + #endif 19 + 20 + #if defined(__i386__) 21 + .globl _recvfrom$NOCANCEL$UNIX2003 22 + .set _recvfrom$NOCANCEL$UNIX2003, ___recvfrom_nocancel 23 + #endif 24 + 25 + #if defined(__x86_64__) 26 + .globl _recvfrom$NOCANCEL 27 + .set _recvfrom$NOCANCEL, ___recvfrom_nocancel 28 + #endif 29 + 30 + #if defined(__ppc__) 31 + .globl _recvfrom$NOCANCEL$UNIX2003 32 + .set _recvfrom$NOCANCEL$UNIX2003, ___recvfrom_nocancel 33 + #endif 34 + 35 + #if defined(__arm64__) 36 + .globl _recvfrom$NOCANCEL 37 + .set _recvfrom$NOCANCEL, ___recvfrom_nocancel 38 + #endif 39 +
+38
src/kernel/libsyscall/bsdsyscalls/___recvmsg.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_recvmsg 5 + #error "SYS_recvmsg not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___recvmsg) 10 + SYSCALL_NONAME(recvmsg, 3, cerror) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___recvmsg, recvmsg, 3, cerror) 15 + #endif 16 + 17 + #endif 18 + 19 + #if defined(__i386__) 20 + .globl _recvmsg$UNIX2003 21 + .set _recvmsg$UNIX2003, ___recvmsg 22 + #endif 23 + 24 + #if defined(__x86_64__) 25 + .globl _recvmsg 26 + .set _recvmsg, ___recvmsg 27 + #endif 28 + 29 + #if defined(__ppc__) 30 + .globl _recvmsg$UNIX2003 31 + .set _recvmsg$UNIX2003, ___recvmsg 32 + #endif 33 + 34 + #if defined(__arm64__) 35 + .globl _recvmsg 36 + .set _recvmsg, ___recvmsg 37 + #endif 38 +
+38
src/kernel/libsyscall/bsdsyscalls/___recvmsg_nocancel.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_recvmsg_nocancel 5 + #error "SYS_recvmsg_nocancel not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___recvmsg_nocancel) 10 + SYSCALL_NONAME(recvmsg_nocancel, 3, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___recvmsg_nocancel, recvmsg_nocancel, 3, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 + 19 + #if defined(__i386__) 20 + .globl _recvmsg$NOCANCEL$UNIX2003 21 + .set _recvmsg$NOCANCEL$UNIX2003, ___recvmsg_nocancel 22 + #endif 23 + 24 + #if defined(__x86_64__) 25 + .globl _recvmsg$NOCANCEL 26 + .set _recvmsg$NOCANCEL, ___recvmsg_nocancel 27 + #endif 28 + 29 + #if defined(__ppc__) 30 + .globl _recvmsg$NOCANCEL$UNIX2003 31 + .set _recvmsg$NOCANCEL$UNIX2003, ___recvmsg_nocancel 32 + #endif 33 + 34 + #if defined(__arm64__) 35 + .globl _recvmsg$NOCANCEL 36 + .set _recvmsg$NOCANCEL, ___recvmsg_nocancel 37 + #endif 38 +
+18
src/kernel/libsyscall/bsdsyscalls/___rename.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_rename 5 + #error "SYS_rename not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___rename) 10 + SYSCALL_NONAME(rename, 2, cerror) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___rename, rename, 2, cerror) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/___renameat.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 16 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_renameat 5 + #error "SYS_renameat not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___renameat) 10 + SYSCALL_NONAME(renameat, 4, cerror) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___renameat, renameat, 4, cerror) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/___renameatx_np.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 20 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_renameatx_np 5 + #error "SYS_renameatx_np not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___renameatx_np) 10 + SYSCALL_NONAME(renameatx_np, 5, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___renameatx_np, renameatx_np, 5, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/___rmdir.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 4 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_rmdir 5 + #error "SYS_rmdir not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___rmdir) 10 + SYSCALL_NONAME(rmdir, 1, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___rmdir, rmdir, 1, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+38
src/kernel/libsyscall/bsdsyscalls/___select.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 20 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_select 5 + #error "SYS_select not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___select) 10 + SYSCALL_NONAME(select, 5, cerror) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___select, select, 5, cerror) 15 + #endif 16 + 17 + #endif 18 + 19 + #if defined(__i386__) 20 + .globl _select$DARWIN_EXTSN 21 + .set _select$DARWIN_EXTSN, ___select 22 + #endif 23 + 24 + #if defined(__x86_64__) 25 + .globl _select$DARWIN_EXTSN 26 + .set _select$DARWIN_EXTSN, ___select 27 + #endif 28 + 29 + #if defined(__ppc__) 30 + .globl _select$DARWIN_EXTSN 31 + .set _select$DARWIN_EXTSN, ___select 32 + #endif 33 + 34 + #if defined(__arm64__) 35 + .globl _select$DARWIN_EXTSN 36 + .set _select$DARWIN_EXTSN, ___select 37 + #endif 38 +
+38
src/kernel/libsyscall/bsdsyscalls/___select_nocancel.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 20 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_select_nocancel 5 + #error "SYS_select_nocancel not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___select_nocancel) 10 + SYSCALL_NONAME(select_nocancel, 5, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___select_nocancel, select_nocancel, 5, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 + 19 + #if defined(__i386__) 20 + .globl _select$DARWIN_EXTSN$NOCANCEL 21 + .set _select$DARWIN_EXTSN$NOCANCEL, ___select_nocancel 22 + #endif 23 + 24 + #if defined(__x86_64__) 25 + .globl _select$DARWIN_EXTSN$NOCANCEL 26 + .set _select$DARWIN_EXTSN$NOCANCEL, ___select_nocancel 27 + #endif 28 + 29 + #if defined(__ppc__) 30 + .globl _select$DARWIN_EXTSN$NOCANCEL 31 + .set _select$DARWIN_EXTSN$NOCANCEL, ___select_nocancel 32 + #endif 33 + 34 + #if defined(__arm64__) 35 + .globl _select$DARWIN_EXTSN$NOCANCEL 36 + .set _select$DARWIN_EXTSN$NOCANCEL, ___select_nocancel 37 + #endif 38 +
+33
src/kernel/libsyscall/bsdsyscalls/___sem_open.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 16 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_sem_open 5 + #error "SYS_sem_open not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___sem_open) 10 + SYSCALL_NONAME(sem_open, 4, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___sem_open, sem_open, 4, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 + 19 + #if defined(__i386__) 20 + .globl _sem_open 21 + .set _sem_open, ___sem_open 22 + #endif 23 + 24 + #if defined(__x86_64__) 25 + .globl _sem_open 26 + .set _sem_open, ___sem_open 27 + #endif 28 + 29 + #if defined(__ppc__) 30 + .globl _sem_open 31 + .set _sem_open, ___sem_open 32 + #endif 33 +
+42
src/kernel/libsyscall/bsdsyscalls/___sem_wait_nocancel.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 4 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_sem_wait_nocancel 5 + #error "SYS_sem_wait_nocancel not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___sem_wait_nocancel) 10 + SYSCALL_NONAME(sem_wait_nocancel, 1, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___sem_wait_nocancel, sem_wait_nocancel, 1, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 + 19 + #if defined(__i386__) 20 + .globl _sem_wait 21 + .set _sem_wait, ___sem_wait_nocancel 22 + .globl _sem_wait$NOCANCEL$UNIX2003 23 + .set _sem_wait$NOCANCEL$UNIX2003, ___sem_wait_nocancel 24 + #endif 25 + 26 + #if defined(__x86_64__) 27 + .globl _sem_wait$NOCANCEL 28 + .set _sem_wait$NOCANCEL, ___sem_wait_nocancel 29 + #endif 30 + 31 + #if defined(__ppc__) 32 + .globl _sem_wait 33 + .set _sem_wait, ___sem_wait_nocancel 34 + .globl _sem_wait$NOCANCEL$UNIX2003 35 + .set _sem_wait$NOCANCEL$UNIX2003, ___sem_wait_nocancel 36 + #endif 37 + 38 + #if defined(__arm64__) 39 + .globl _sem_wait$NOCANCEL 40 + .set _sem_wait$NOCANCEL, ___sem_wait_nocancel 41 + #endif 42 +
+33
src/kernel/libsyscall/bsdsyscalls/___semctl.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 16 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_semctl 5 + #error "SYS_semctl not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___semctl) 10 + SYSCALL_NONAME(semctl, 4, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___semctl, semctl, 4, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 + 19 + #if defined(__i386__) 20 + .globl _semctl$UNIX2003 21 + .set _semctl$UNIX2003, ___semctl 22 + #endif 23 + 24 + #if defined(__x86_64__) 25 + .globl _semctl 26 + .set _semctl, ___semctl 27 + #endif 28 + 29 + #if defined(__ppc__) 30 + .globl _semctl$UNIX2003 31 + .set _semctl$UNIX2003, ___semctl 32 + #endif 33 +
+33
src/kernel/libsyscall/bsdsyscalls/___semsys.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 20 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_semsys 5 + #error "SYS_semsys not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___semsys) 10 + SYSCALL_NONAME(semsys, 5, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___semsys, semsys, 5, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 + 19 + #if defined(__i386__) 20 + .globl _semsys 21 + .set _semsys, ___semsys 22 + #endif 23 + 24 + #if defined(__x86_64__) 25 + .globl _semsys 26 + .set _semsys, ___semsys 27 + #endif 28 + 29 + #if defined(__ppc__) 30 + .globl _semsys 31 + .set _semsys, ___semsys 32 + #endif 33 +
+18
src/kernel/libsyscall/bsdsyscalls/___semwait_signal.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 28 2 + #include "SYS.h" 3 + 4 + #ifndef SYS___semwait_signal 5 + #error "SYS___semwait_signal not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___semwait_signal) 10 + SYSCALL_NONAME(__semwait_signal, 6, cerror) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___semwait_signal, __semwait_signal, 6, cerror) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/___semwait_signal_nocancel.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 28 2 + #include "SYS.h" 3 + 4 + #ifndef SYS___semwait_signal_nocancel 5 + #error "SYS___semwait_signal_nocancel not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___semwait_signal_nocancel) 10 + SYSCALL_NONAME(__semwait_signal_nocancel, 6, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___semwait_signal_nocancel, __semwait_signal_nocancel, 6, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+38
src/kernel/libsyscall/bsdsyscalls/___sendmsg.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_sendmsg 5 + #error "SYS_sendmsg not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___sendmsg) 10 + SYSCALL_NONAME(sendmsg, 3, cerror) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___sendmsg, sendmsg, 3, cerror) 15 + #endif 16 + 17 + #endif 18 + 19 + #if defined(__i386__) 20 + .globl _sendmsg$UNIX2003 21 + .set _sendmsg$UNIX2003, ___sendmsg 22 + #endif 23 + 24 + #if defined(__x86_64__) 25 + .globl _sendmsg 26 + .set _sendmsg, ___sendmsg 27 + #endif 28 + 29 + #if defined(__ppc__) 30 + .globl _sendmsg$UNIX2003 31 + .set _sendmsg$UNIX2003, ___sendmsg 32 + #endif 33 + 34 + #if defined(__arm64__) 35 + .globl _sendmsg 36 + .set _sendmsg, ___sendmsg 37 + #endif 38 +
+38
src/kernel/libsyscall/bsdsyscalls/___sendmsg_nocancel.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_sendmsg_nocancel 5 + #error "SYS_sendmsg_nocancel not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___sendmsg_nocancel) 10 + SYSCALL_NONAME(sendmsg_nocancel, 3, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___sendmsg_nocancel, sendmsg_nocancel, 3, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 + 19 + #if defined(__i386__) 20 + .globl _sendmsg$NOCANCEL$UNIX2003 21 + .set _sendmsg$NOCANCEL$UNIX2003, ___sendmsg_nocancel 22 + #endif 23 + 24 + #if defined(__x86_64__) 25 + .globl _sendmsg$NOCANCEL 26 + .set _sendmsg$NOCANCEL, ___sendmsg_nocancel 27 + #endif 28 + 29 + #if defined(__ppc__) 30 + .globl _sendmsg$NOCANCEL$UNIX2003 31 + .set _sendmsg$NOCANCEL$UNIX2003, ___sendmsg_nocancel 32 + #endif 33 + 34 + #if defined(__arm64__) 35 + .globl _sendmsg$NOCANCEL 36 + .set _sendmsg$NOCANCEL, ___sendmsg_nocancel 37 + #endif 38 +
+39
src/kernel/libsyscall/bsdsyscalls/___sendto.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 24 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_sendto 5 + #error "SYS_sendto not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___sendto) 10 + ZERO_EXTEND(2) 11 + SYSCALL_NONAME(sendto, 6, cerror) 12 + ret 13 + #else 14 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 15 + __SYSCALL2(___sendto, sendto, 6, cerror) 16 + #endif 17 + 18 + #endif 19 + 20 + #if defined(__i386__) 21 + .globl _sendto$UNIX2003 22 + .set _sendto$UNIX2003, ___sendto 23 + #endif 24 + 25 + #if defined(__x86_64__) 26 + .globl _sendto 27 + .set _sendto, ___sendto 28 + #endif 29 + 30 + #if defined(__ppc__) 31 + .globl _sendto$UNIX2003 32 + .set _sendto$UNIX2003, ___sendto 33 + #endif 34 + 35 + #if defined(__arm64__) 36 + .globl _sendto 37 + .set _sendto, ___sendto 38 + #endif 39 +
+39
src/kernel/libsyscall/bsdsyscalls/___sendto_nocancel.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 24 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_sendto_nocancel 5 + #error "SYS_sendto_nocancel not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___sendto_nocancel) 10 + ZERO_EXTEND(2) 11 + SYSCALL_NONAME(sendto_nocancel, 6, cerror_nocancel) 12 + ret 13 + #else 14 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 15 + __SYSCALL2(___sendto_nocancel, sendto_nocancel, 6, cerror_nocancel) 16 + #endif 17 + 18 + #endif 19 + 20 + #if defined(__i386__) 21 + .globl _sendto$NOCANCEL$UNIX2003 22 + .set _sendto$NOCANCEL$UNIX2003, ___sendto_nocancel 23 + #endif 24 + 25 + #if defined(__x86_64__) 26 + .globl _sendto$NOCANCEL 27 + .set _sendto$NOCANCEL, ___sendto_nocancel 28 + #endif 29 + 30 + #if defined(__ppc__) 31 + .globl _sendto$NOCANCEL$UNIX2003 32 + .set _sendto$NOCANCEL$UNIX2003, ___sendto_nocancel 33 + #endif 34 + 35 + #if defined(__arm64__) 36 + .globl _sendto$NOCANCEL 37 + .set _sendto$NOCANCEL, ___sendto_nocancel 38 + #endif 39 +
+40
src/kernel/libsyscall/bsdsyscalls/___setattrlist.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 20 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_setattrlist 5 + #error "SYS_setattrlist not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___setattrlist) 10 + ZERO_EXTEND(4) 11 + ZERO_EXTEND(3) 12 + SYSCALL_NONAME(setattrlist, 5, cerror_nocancel) 13 + ret 14 + #else 15 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 16 + __SYSCALL2(___setattrlist, setattrlist, 5, cerror_nocancel) 17 + #endif 18 + 19 + #endif 20 + 21 + #if defined(__i386__) 22 + .globl _setattrlist$UNIX2003 23 + .set _setattrlist$UNIX2003, ___setattrlist 24 + #endif 25 + 26 + #if defined(__x86_64__) 27 + .globl _setattrlist 28 + .set _setattrlist, ___setattrlist 29 + #endif 30 + 31 + #if defined(__ppc__) 32 + .globl _setattrlist$UNIX2003 33 + .set _setattrlist$UNIX2003, ___setattrlist 34 + #endif 35 + 36 + #if defined(__arm64__) 37 + .globl _setattrlist 38 + .set _setattrlist, ___setattrlist 39 + #endif 40 +
+18
src/kernel/libsyscall/bsdsyscalls/___setlogin.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 4 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_setlogin 5 + #error "SYS_setlogin not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___setlogin) 10 + SYSCALL_NONAME(setlogin, 1, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___setlogin, setlogin, 1, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/___setpriority.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_setpriority 5 + #error "SYS_setpriority not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___setpriority) 10 + SYSCALL_NONAME(setpriority, 3, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___setpriority, setpriority, 3, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+38
src/kernel/libsyscall/bsdsyscalls/___setregid.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_setregid 5 + #error "SYS_setregid not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___setregid) 10 + SYSCALL_NONAME(setregid, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___setregid, setregid, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 + 19 + #if defined(__i386__) 20 + .globl _setregid$UNIX2003 21 + .set _setregid$UNIX2003, ___setregid 22 + #endif 23 + 24 + #if defined(__x86_64__) 25 + .globl _setregid 26 + .set _setregid, ___setregid 27 + #endif 28 + 29 + #if defined(__ppc__) 30 + .globl _setregid$UNIX2003 31 + .set _setregid$UNIX2003, ___setregid 32 + #endif 33 + 34 + #if defined(__arm64__) 35 + .globl _setregid 36 + .set _setregid, ___setregid 37 + #endif 38 +
+38
src/kernel/libsyscall/bsdsyscalls/___setreuid.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_setreuid 5 + #error "SYS_setreuid not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___setreuid) 10 + SYSCALL_NONAME(setreuid, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___setreuid, setreuid, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 + 19 + #if defined(__i386__) 20 + .globl _setreuid$UNIX2003 21 + .set _setreuid$UNIX2003, ___setreuid 22 + #endif 23 + 24 + #if defined(__x86_64__) 25 + .globl _setreuid 26 + .set _setreuid, ___setreuid 27 + #endif 28 + 29 + #if defined(__ppc__) 30 + .globl _setreuid$UNIX2003 31 + .set _setreuid$UNIX2003, ___setreuid 32 + #endif 33 + 34 + #if defined(__arm64__) 35 + .globl _setreuid 36 + .set _setreuid, ___setreuid 37 + #endif 38 +
+28
src/kernel/libsyscall/bsdsyscalls/___setrlimit.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_setrlimit 5 + #error "SYS_setrlimit not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___setrlimit) 10 + SYSCALL_NONAME(setrlimit, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___setrlimit, setrlimit, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 + 19 + #if defined(__i386__) 20 + .globl _setrlimit 21 + .set _setrlimit, ___setrlimit 22 + #endif 23 + 24 + #if defined(__ppc__) 25 + .globl _setrlimit 26 + .set _setrlimit, ___setrlimit 27 + #endif 28 +
+38
src/kernel/libsyscall/bsdsyscalls/___setsgroups.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_setsgroups 5 + #error "SYS_setsgroups not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___setsgroups) 10 + SYSCALL_NONAME(setsgroups, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___setsgroups, setsgroups, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 + 19 + #if defined(__i386__) 20 + .globl _setsgroups_np 21 + .set _setsgroups_np, ___setsgroups 22 + #endif 23 + 24 + #if defined(__x86_64__) 25 + .globl _setsgroups_np 26 + .set _setsgroups_np, ___setsgroups 27 + #endif 28 + 29 + #if defined(__ppc__) 30 + .globl _setsgroups_np 31 + .set _setsgroups_np, ___setsgroups 32 + #endif 33 + 34 + #if defined(__arm64__) 35 + .globl _setsgroups_np 36 + .set _setsgroups_np, ___setsgroups 37 + #endif 38 +
+38
src/kernel/libsyscall/bsdsyscalls/___settid.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_settid 5 + #error "SYS_settid not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___settid) 10 + SYSCALL_NONAME(settid, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___settid, settid, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 + 19 + #if defined(__i386__) 20 + .globl _pthread_setugid_np 21 + .set _pthread_setugid_np, ___settid 22 + #endif 23 + 24 + #if defined(__x86_64__) 25 + .globl _pthread_setugid_np 26 + .set _pthread_setugid_np, ___settid 27 + #endif 28 + 29 + #if defined(__ppc__) 30 + .globl _pthread_setugid_np 31 + .set _pthread_setugid_np, ___settid 32 + #endif 33 + 34 + #if defined(__arm64__) 35 + .globl _pthread_setugid_np 36 + .set _pthread_setugid_np, ___settid 37 + #endif 38 +
+18
src/kernel/libsyscall/bsdsyscalls/___settid_with_pid.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_settid_with_pid 5 + #error "SYS_settid_with_pid not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___settid_with_pid) 10 + SYSCALL_NONAME(settid_with_pid, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___settid_with_pid, settid_with_pid, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/___settimeofday.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_settimeofday 5 + #error "SYS_settimeofday not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___settimeofday) 10 + SYSCALL_NONAME(settimeofday, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___settimeofday, settimeofday, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+38
src/kernel/libsyscall/bsdsyscalls/___setwgroups.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_setwgroups 5 + #error "SYS_setwgroups not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___setwgroups) 10 + SYSCALL_NONAME(setwgroups, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___setwgroups, setwgroups, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 + 19 + #if defined(__i386__) 20 + .globl _setwgroups_np 21 + .set _setwgroups_np, ___setwgroups 22 + #endif 23 + 24 + #if defined(__x86_64__) 25 + .globl _setwgroups_np 26 + .set _setwgroups_np, ___setwgroups 27 + #endif 28 + 29 + #if defined(__ppc__) 30 + .globl _setwgroups_np 31 + .set _setwgroups_np, ___setwgroups 32 + #endif 33 + 34 + #if defined(__arm64__) 35 + .globl _setwgroups_np 36 + .set _setwgroups_np, ___setwgroups 37 + #endif 38 +
+18
src/kernel/libsyscall/bsdsyscalls/___sfi_ctl.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 20 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_sfi_ctl 5 + #error "SYS_sfi_ctl not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___sfi_ctl) 10 + SYSCALL_NONAME(sfi_ctl, 4, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___sfi_ctl, sfi_ctl, 4, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/___sfi_pidctl.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 16 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_sfi_pidctl 5 + #error "SYS_sfi_pidctl not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___sfi_pidctl) 10 + SYSCALL_NONAME(sfi_pidctl, 4, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___sfi_pidctl, sfi_pidctl, 4, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/___shared_region_check_np.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 4 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_shared_region_check_np 5 + #error "SYS_shared_region_check_np not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___shared_region_check_np) 10 + SYSCALL_NONAME(shared_region_check_np, 1, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___shared_region_check_np, shared_region_check_np, 1, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/___shared_region_map_and_slide_2_np.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 16 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_shared_region_map_and_slide_2_np 5 + #error "SYS_shared_region_map_and_slide_2_np not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___shared_region_map_and_slide_2_np) 10 + SYSCALL_NONAME(shared_region_map_and_slide_2_np, 4, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___shared_region_map_and_slide_2_np, shared_region_map_and_slide_2_np, 4, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/___shared_region_map_and_slide_np.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 24 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_shared_region_map_and_slide_np 5 + #error "SYS_shared_region_map_and_slide_np not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___shared_region_map_and_slide_np) 10 + SYSCALL_NONAME(shared_region_map_and_slide_np, 6, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___shared_region_map_and_slide_np, shared_region_map_and_slide_np, 6, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+33
src/kernel/libsyscall/bsdsyscalls/___shm_open.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_shm_open 5 + #error "SYS_shm_open not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___shm_open) 10 + SYSCALL_NONAME(shm_open, 3, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___shm_open, shm_open, 3, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 + 19 + #if defined(__i386__) 20 + .globl _shm_open 21 + .set _shm_open, ___shm_open 22 + #endif 23 + 24 + #if defined(__x86_64__) 25 + .globl _shm_open 26 + .set _shm_open, ___shm_open 27 + #endif 28 + 29 + #if defined(__ppc__) 30 + .globl _shm_open 31 + .set _shm_open, ___shm_open 32 + #endif 33 +
+38
src/kernel/libsyscall/bsdsyscalls/___shmctl.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_shmctl 5 + #error "SYS_shmctl not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___shmctl) 10 + SYSCALL_NONAME(shmctl, 3, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___shmctl, shmctl, 3, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 + 19 + #if defined(__i386__) 20 + .globl _shmctl$UNIX2003 21 + .set _shmctl$UNIX2003, ___shmctl 22 + #endif 23 + 24 + #if defined(__x86_64__) 25 + .globl _shmctl 26 + .set _shmctl, ___shmctl 27 + #endif 28 + 29 + #if defined(__ppc__) 30 + .globl _shmctl$UNIX2003 31 + .set _shmctl$UNIX2003, ___shmctl 32 + #endif 33 + 34 + #if defined(__arm64__) 35 + .globl _shmctl 36 + .set _shmctl, ___shmctl 37 + #endif 38 +
+33
src/kernel/libsyscall/bsdsyscalls/___shmsys.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 16 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_shmsys 5 + #error "SYS_shmsys not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___shmsys) 10 + SYSCALL_NONAME(shmsys, 4, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___shmsys, shmsys, 4, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 + 19 + #if defined(__i386__) 20 + .globl _shmsys 21 + .set _shmsys, ___shmsys 22 + #endif 23 + 24 + #if defined(__x86_64__) 25 + .globl _shmsys 26 + .set _shmsys, ___shmsys 27 + #endif 28 + 29 + #if defined(__ppc__) 30 + .globl _shmsys 31 + .set _shmsys, ___shmsys 32 + #endif 33 +
+18
src/kernel/libsyscall/bsdsyscalls/___sigaction.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_sigaction 5 + #error "SYS_sigaction not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___sigaction) 10 + SYSCALL_NONAME(sigaction, 3, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___sigaction, sigaction, 3, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+59
src/kernel/libsyscall/bsdsyscalls/___sigaltstack.S
··· 1 + /* 2 + * Copyright (c) 1999-2007 Apple Inc. All rights reserved. 3 + * 4 + * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ 5 + * 6 + * This file contains Original Code and/or Modifications of Original Code 7 + * as defined in and that are subject to the Apple Public Source License 8 + * Version 2.0 (the 'License'). You may not use this file except in 9 + * compliance with the License. The rights granted to you under the License 10 + * may not be used to create, or enable the creation or redistribution of, 11 + * unlawful or unlicensed copies of an Apple operating system, or to 12 + * circumvent, violate, or enable the circumvention or violation of, any 13 + * terms of an Apple operating system software license agreement. 14 + * 15 + * Please obtain a copy of the License at 16 + * http://www.opensource.apple.com/apsl/ and read it before using this file. 17 + * 18 + * The Original Code and all software distributed under the License are 19 + * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 20 + * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, 21 + * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, 22 + * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 23 + * Please see the License for the specific language governing rights and 24 + * limitations under the License. 25 + * 26 + * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ 27 + */ 28 + 29 + #include "SYS.h" 30 + 31 + #if defined(__x86_64__) 32 + 33 + __SYSCALL(___sigaltstack, sigaltstack, 3) 34 + 35 + #elif defined(__i386__) 36 + 37 + __SYSCALL_INT(___sigaltstack, sigaltstack, 3) 38 + 39 + #elif defined(__arm__) 40 + 41 + __SYSCALL(___sigaltstack, sigaltstack, 3) 42 + 43 + #elif defined(__arm64__) 44 + 45 + __SYSCALL(___sigaltstack, sigaltstack, 3) 46 + 47 + #else 48 + #error Unsupported architecture 49 + #endif 50 + #if defined(__i386__) 51 + .globl _sigaltstack 52 + .set _sigaltstack, ___sigaltstack 53 + #endif 54 + 55 + #if defined(__ppc__) 56 + .globl _sigaltstack 57 + .set _sigaltstack, ___sigaltstack 58 + #endif 59 +
+49
src/kernel/libsyscall/bsdsyscalls/___sigreturn.S
··· 1 + /* 2 + * Copyright (c) 1999-2007 Apple Inc. All rights reserved. 3 + * 4 + * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ 5 + * 6 + * This file contains Original Code and/or Modifications of Original Code 7 + * as defined in and that are subject to the Apple Public Source License 8 + * Version 2.0 (the 'License'). You may not use this file except in 9 + * compliance with the License. The rights granted to you under the License 10 + * may not be used to create, or enable the creation or redistribution of, 11 + * unlawful or unlicensed copies of an Apple operating system, or to 12 + * circumvent, violate, or enable the circumvention or violation of, any 13 + * terms of an Apple operating system software license agreement. 14 + * 15 + * Please obtain a copy of the License at 16 + * http://www.opensource.apple.com/apsl/ and read it before using this file. 17 + * 18 + * The Original Code and all software distributed under the License are 19 + * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 20 + * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, 21 + * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, 22 + * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 23 + * Please see the License for the specific language governing rights and 24 + * limitations under the License. 25 + * 26 + * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ 27 + */ 28 + 29 + #include "SYS.h" 30 + 31 + #if defined(__x86_64__) 32 + 33 + __SYSCALL(___sigreturn, sigreturn, 3) 34 + 35 + #elif defined(__i386__) 36 + 37 + __SYSCALL_INT(___sigreturn, sigreturn, 3) 38 + 39 + #elif defined(__arm__) 40 + 41 + __SYSCALL(___sigreturn, sigreturn, 3) 42 + 43 + #elif defined(__arm64__) 44 + 45 + __SYSCALL(___sigreturn, sigreturn, 3) 46 + 47 + #else 48 + #error Unsupported architecture 49 + #endif
+18
src/kernel/libsyscall/bsdsyscalls/___sigsuspend.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 4 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_sigsuspend 5 + #error "SYS_sigsuspend not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___sigsuspend) 10 + SYSCALL_NONAME(sigsuspend, 1, cerror) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___sigsuspend, sigsuspend, 1, cerror) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/___sigsuspend_nocancel.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 4 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_sigsuspend_nocancel 5 + #error "SYS_sigsuspend_nocancel not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___sigsuspend_nocancel) 10 + SYSCALL_NONAME(sigsuspend_nocancel, 1, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___sigsuspend_nocancel, sigsuspend_nocancel, 1, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/___sigwait.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS___sigwait 5 + #error "SYS___sigwait not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___sigwait) 10 + SYSCALL_NONAME(__sigwait, 2, cerror) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___sigwait, __sigwait, 2, cerror) 15 + #endif 16 + 17 + #endif 18 +
+38
src/kernel/libsyscall/bsdsyscalls/___socketpair.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 16 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_socketpair 5 + #error "SYS_socketpair not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___socketpair) 10 + SYSCALL_NONAME(socketpair, 4, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___socketpair, socketpair, 4, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 + 19 + #if defined(__i386__) 20 + .globl _socketpair$UNIX2003 21 + .set _socketpair$UNIX2003, ___socketpair 22 + #endif 23 + 24 + #if defined(__x86_64__) 25 + .globl _socketpair 26 + .set _socketpair, ___socketpair 27 + #endif 28 + 29 + #if defined(__ppc__) 30 + .globl _socketpair$UNIX2003 31 + .set _socketpair$UNIX2003, ___socketpair 32 + #endif 33 + 34 + #if defined(__arm64__) 35 + .globl _socketpair 36 + .set _socketpair, ___socketpair 37 + #endif 38 +
+19
src/kernel/libsyscall/bsdsyscalls/___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(__arm64__) 9 + MI_ENTRY_POINT(___stack_snapshot_with_config) 10 + ZERO_EXTEND(2) 11 + SYSCALL_NONAME(stack_snapshot_with_config, 3, cerror_nocancel) 12 + ret 13 + #else 14 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 15 + __SYSCALL2(___stack_snapshot_with_config, stack_snapshot_with_config, 3, cerror_nocancel) 16 + #endif 17 + 18 + #endif 19 +
+18
src/kernel/libsyscall/bsdsyscalls/___stat64_extended.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 16 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_stat64_extended 5 + #error "SYS_stat64_extended not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___stat64_extended) 10 + SYSCALL_NONAME(stat64_extended, 4, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___stat64_extended, stat64_extended, 4, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/___stat_extended.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 16 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_stat_extended 5 + #error "SYS_stat_extended not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___stat_extended) 10 + SYSCALL_NONAME(stat_extended, 4, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___stat_extended, stat_extended, 4, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+93
src/kernel/libsyscall/bsdsyscalls/___syscall.S
··· 1 + /* 2 + * Copyright (c) 1999-2007 Apple Inc. All rights reserved. 3 + * 4 + * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ 5 + * 6 + * This file contains Original Code and/or Modifications of Original Code 7 + * as defined in and that are subject to the Apple Public Source License 8 + * Version 2.0 (the 'License'). You may not use this file except in 9 + * compliance with the License. The rights granted to you under the License 10 + * may not be used to create, or enable the creation or redistribution of, 11 + * unlawful or unlicensed copies of an Apple operating system, or to 12 + * circumvent, violate, or enable the circumvention or violation of, any 13 + * terms of an Apple operating system software license agreement. 14 + * 15 + * Please obtain a copy of the License at 16 + * http://www.opensource.apple.com/apsl/ and read it before using this file. 17 + * 18 + * The Original Code and all software distributed under the License are 19 + * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 20 + * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, 21 + * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, 22 + * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 23 + * Please see the License for the specific language governing rights and 24 + * limitations under the License. 25 + * 26 + * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ 27 + */ 28 + /* Copyright (c) 1992 NeXT Computer, Inc. All rights reserved. */ 29 + 30 + #include "SYS.h" 31 + 32 + #if defined(__i386__) 33 + 34 + LEAF(___syscall, 0) 35 + popl %ecx // ret addr 36 + popl %eax // syscall number 37 + pushl %ecx 38 + UNIX_SYSCALL_TRAP 39 + movl (%esp),%edx // add one element to stack so 40 + pushl %ecx // caller "pop" will work 41 + jnb 2f 42 + BRANCH_EXTERN(tramp_cerror) 43 + 2: 44 + END(___syscall) 45 + 46 + #elif defined(__x86_64__) 47 + 48 + // For x86-64, the kernel slides the argument list for us. 49 + // The number of arguments here is variable, but our macros ignore 50 + // that value anyway. 51 + __SYSCALL(___syscall, syscall, 0); 52 + 53 + #elif defined(__arm__) 54 + 55 + __SYSCALL(___syscall, syscall, 7) 56 + 57 + #elif defined(__arm64__) 58 + 59 + /* 60 + * Ignore nominal number of arguments: just pop from stack and let the kernel 61 + * interpret. 62 + */ 63 + #include <mach/arm64/asm.h> 64 + MI_ENTRY_POINT(___syscall) 65 + ldp x1, x2, [sp] 66 + ldp x3, x4, [sp, #16] 67 + ldp x5, x6, [sp, #32] 68 + ldr x7, [sp, #48] 69 + DO_SYSCALL(SYS_syscall, cerror) 70 + ret 71 + #else 72 + #error Unsupported architecture 73 + #endif 74 + #if defined(__i386__) 75 + .globl _syscall 76 + .set _syscall, ___syscall 77 + #endif 78 + 79 + #if defined(__x86_64__) 80 + .globl _syscall 81 + .set _syscall, ___syscall 82 + #endif 83 + 84 + #if defined(__ppc__) 85 + .globl _syscall 86 + .set _syscall, ___syscall 87 + #endif 88 + 89 + #if defined(__arm64__) 90 + .globl _syscall 91 + .set _syscall, ___syscall 92 + #endif 93 +
+19
src/kernel/libsyscall/bsdsyscalls/___sysctl.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 24 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_sysctl 5 + #error "SYS_sysctl not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___sysctl) 10 + ZERO_EXTEND(5) 11 + SYSCALL_NONAME(sysctl, 6, cerror_nocancel) 12 + ret 13 + #else 14 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 15 + __SYSCALL2(___sysctl, sysctl, 6, cerror_nocancel) 16 + #endif 17 + 18 + #endif 19 +
+20
src/kernel/libsyscall/bsdsyscalls/___sysctlbyname.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 24 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_sysctlbyname 5 + #error "SYS_sysctlbyname not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___sysctlbyname) 10 + ZERO_EXTEND(1) 11 + ZERO_EXTEND(5) 12 + SYSCALL_NONAME(sysctlbyname, 6, cerror_nocancel) 13 + ret 14 + #else 15 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 16 + __SYSCALL2(___sysctlbyname, sysctlbyname, 6, cerror_nocancel) 17 + #endif 18 + 19 + #endif 20 +
+18
src/kernel/libsyscall/bsdsyscalls/___telemetry.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 48 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_telemetry 5 + #error "SYS_telemetry not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___telemetry) 10 + SYSCALL_NONAME(telemetry, 6, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___telemetry, telemetry, 6, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/___terminate_with_payload.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 36 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_terminate_with_payload 5 + #error "SYS_terminate_with_payload not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___terminate_with_payload) 10 + SYSCALL_NONAME(terminate_with_payload, 7, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___terminate_with_payload, terminate_with_payload, 7, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+47
src/kernel/libsyscall/bsdsyscalls/___thread_selfid.S
··· 1 + /* 2 + * Copyright (c) 1999-2007 Apple Inc. All rights reserved. 3 + * 4 + * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ 5 + * 6 + * This file contains Original Code and/or Modifications of Original Code 7 + * as defined in and that are subject to the Apple Public Source License 8 + * Version 2.0 (the 'License'). You may not use this file except in 9 + * compliance with the License. The rights granted to you under the License 10 + * may not be used to create, or enable the creation or redistribution of, 11 + * unlawful or unlicensed copies of an Apple operating system, or to 12 + * circumvent, violate, or enable the circumvention or violation of, any 13 + * terms of an Apple operating system software license agreement. 14 + * 15 + * Please obtain a copy of the License at 16 + * http://www.opensource.apple.com/apsl/ and read it before using this file. 17 + * 18 + * The Original Code and all software distributed under the License are 19 + * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 20 + * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, 21 + * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, 22 + * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 23 + * Please see the License for the specific language governing rights and 24 + * limitations under the License. 25 + * 26 + * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ 27 + */ 28 + 29 + #include "SYS.h" 30 + 31 + #if defined(__x86_64__) 32 + 33 + __SYSCALL(___thread_selfid, thread_selfid, 0) 34 + 35 + #elif defined(__i386__) 36 + 37 + __SYSCALL_INT(___thread_selfid, thread_selfid, 0) 38 + 39 + #elif defined(__arm__) 40 + 41 + __SYSCALL(___thread_selfid, thread_selfid, 0) 42 + 43 + #elif defined(__arm64__) 44 + 45 + __SYSCALL(___thread_selfid, thread_selfid, 0) 46 + 47 + #endif
+47
src/kernel/libsyscall/bsdsyscalls/___thread_selfusage.S
··· 1 + /* 2 + * Copyright (c) 2014 Apple Inc. All rights reserved. 3 + * 4 + * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ 5 + * 6 + * This file contains Original Code and/or Modifications of Original Code 7 + * as defined in and that are subject to the Apple Public Source License 8 + * Version 2.0 (the 'License'). You may not use this file except in 9 + * compliance with the License. The rights granted to you under the License 10 + * may not be used to create, or enable the creation or redistribution of, 11 + * unlawful or unlicensed copies of an Apple operating system, or to 12 + * circumvent, violate, or enable the circumvention or violation of, any 13 + * terms of an Apple operating system software license agreement. 14 + * 15 + * Please obtain a copy of the License at 16 + * http://www.opensource.apple.com/apsl/ and read it before using this file. 17 + * 18 + * The Original Code and all software distributed under the License are 19 + * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 20 + * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, 21 + * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, 22 + * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 23 + * Please see the License for the specific language governing rights and 24 + * limitations under the License. 25 + * 26 + * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ 27 + */ 28 + 29 + #include "SYS.h" 30 + 31 + #if defined(__x86_64__) 32 + 33 + __SYSCALL(___thread_selfusage, thread_selfusage, 0) 34 + 35 + #elif defined(__i386__) 36 + 37 + __SYSCALL_INT(___thread_selfusage, thread_selfusage, 0) 38 + 39 + #elif defined(__arm__) 40 + 41 + __SYSCALL(___thread_selfusage, thread_selfusage, 0) 42 + 43 + #elif defined(__arm64__) 44 + 45 + __SYSCALL(___thread_selfusage, thread_selfusage, 0) 46 + 47 + #endif
+18
src/kernel/libsyscall/bsdsyscalls/___ulock_wait.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 20 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_ulock_wait 5 + #error "SYS_ulock_wait not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___ulock_wait) 10 + SYSCALL_NONAME(ulock_wait, 4, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___ulock_wait, ulock_wait, 4, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/___ulock_wait2.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 32 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_ulock_wait2 5 + #error "SYS_ulock_wait2 not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___ulock_wait2) 10 + SYSCALL_NONAME(ulock_wait2, 5, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___ulock_wait2, ulock_wait2, 5, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/___ulock_wake.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 16 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_ulock_wake 5 + #error "SYS_ulock_wake not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___ulock_wake) 10 + SYSCALL_NONAME(ulock_wake, 3, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___ulock_wake, ulock_wake, 3, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/___umask_extended.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_umask_extended 5 + #error "SYS_umask_extended not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___umask_extended) 10 + SYSCALL_NONAME(umask_extended, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___umask_extended, umask_extended, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/___unlink.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 4 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_unlink 5 + #error "SYS_unlink not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___unlink) 10 + SYSCALL_NONAME(unlink, 1, cerror) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___unlink, unlink, 1, cerror) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/___unlinkat.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_unlinkat 5 + #error "SYS_unlinkat not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___unlinkat) 10 + SYSCALL_NONAME(unlinkat, 3, cerror) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___unlinkat, unlinkat, 3, cerror) 15 + #endif 16 + 17 + #endif 18 +
+279
src/kernel/libsyscall/bsdsyscalls/___vfork.S
··· 1 + /* 2 + * Copyright (c) 1999-2007 Apple Inc. All rights reserved. 3 + * 4 + * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ 5 + * 6 + * This file contains Original Code and/or Modifications of Original Code 7 + * as defined in and that are subject to the Apple Public Source License 8 + * Version 2.0 (the 'License'). You may not use this file except in 9 + * compliance with the License. The rights granted to you under the License 10 + * may not be used to create, or enable the creation or redistribution of, 11 + * unlawful or unlicensed copies of an Apple operating system, or to 12 + * circumvent, violate, or enable the circumvention or violation of, any 13 + * terms of an Apple operating system software license agreement. 14 + * 15 + * Please obtain a copy of the License at 16 + * http://www.opensource.apple.com/apsl/ and read it before using this file. 17 + * 18 + * The Original Code and all software distributed under the License are 19 + * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 20 + * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, 21 + * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, 22 + * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 23 + * Please see the License for the specific language governing rights and 24 + * limitations under the License. 25 + * 26 + * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ 27 + */ 28 + /* Copyright (c) 1998 Apple Computer, Inc. All rights reserved. 29 + * 30 + * File: libc/ppc/sys/vfork.s 31 + * 32 + * HISTORY 33 + * 23-Jun-1998 Umesh Vaishampayan (umeshv@apple.com) 34 + * Created from fork.s 35 + * 36 + */ 37 + 38 + #include "SYS.h" 39 + 40 + #if defined(__i386__) 41 + 42 + #if defined(__DYNAMIC__) 43 + #define GET_CURRENT_PID PICIFY(__current_pid) 44 + 45 + NON_LAZY_STUB(__current_pid) 46 + #define __current_pid (%edx) 47 + #else 48 + #define GET_CURRENT_PID 49 + #endif 50 + 51 + /* 52 + * If __current_pid >= 0, we want to put a -1 in there 53 + * otherwise we just decrement it 54 + */ 55 + 56 + LEAF(___vfork, 0) 57 + GET_CURRENT_PID 58 + movl __current_pid, %eax 59 + 0: 60 + xorl %ecx, %ecx 61 + testl %eax, %eax 62 + cmovs %eax, %ecx 63 + decl %ecx 64 + lock 65 + cmpxchgl %ecx, __current_pid 66 + jne 0b 67 + popl %ecx 68 + movl $(SYS_vfork), %eax // code for vfork -> eax 69 + UNIX_SYSCALL_TRAP // do the system call 70 + jnb L1 // jump if CF==0 71 + GET_CURRENT_PID 72 + lock 73 + incl __current_pid 74 + pushl %ecx 75 + BRANCH_EXTERN(tramp_cerror) 76 + 77 + L1: 78 + testl %edx, %edx // CF=OF=0, ZF set if zero result 79 + jz L2 // parent, since r1 == 0 in parent, 1 in child 80 + xorl %eax, %eax // zero eax 81 + jmp *%ecx 82 + 83 + L2: 84 + GET_CURRENT_PID 85 + lock 86 + incl __current_pid 87 + jmp *%ecx 88 + 89 + #elif defined(__x86_64__) 90 + 91 + /* 92 + * If __current_pid >= 0, we want to put a -1 in there 93 + * otherwise we just decrement it 94 + */ 95 + 96 + LEAF(___vfork, 0) 97 + movq __current_pid@GOTPCREL(%rip), %rax 98 + movl (%rax), %eax 99 + 0: 100 + xorl %ecx, %ecx 101 + testl %eax, %eax 102 + cmovs %eax, %ecx 103 + subl $1, %ecx 104 + movq __current_pid@GOTPCREL(%rip), %rdx 105 + lock 106 + cmpxchgl %ecx, (%rdx) 107 + jne 0b 108 + #ifdef DARLING 109 + movl $ SYS_vfork, %eax 110 + call __darling_bsd_syscall 111 + cmpq $0, %rax 112 + jnb L1 113 + #else 114 + popq %rdi // return address in %rdi 115 + movq $ SYSCALL_CONSTRUCT_UNIX(SYS_vfork), %rax // code for vfork -> rax 116 + UNIX_SYSCALL_TRAP // do the system call 117 + jnb L1 // jump if CF==0 118 + pushq %rdi // put return address back on stack for cerror 119 + #endif 120 + movq __current_pid@GOTPCREL(%rip), %rcx 121 + lock 122 + addl $1, (%rcx) 123 + movq %rax, %rdi 124 + BRANCH_EXTERN(_cerror) 125 + 126 + L1: 127 + #ifdef DARLING 128 + testl %eax, %eax 129 + jnz L2 130 + #else 131 + testl %edx, %edx // CF=OF=0, ZF set if zero result 132 + jz L2 // parent, since r1 == 0 in parent, 1 in child 133 + #endif 134 + xorq %rax, %rax // zero rax 135 + #ifdef DARLING 136 + ret 137 + #else 138 + jmp *%rdi 139 + #endif 140 + 141 + L2: 142 + movq __current_pid@GOTPCREL(%rip), %rdx 143 + lock 144 + addl $1, (%rdx) 145 + #ifdef DARLING 146 + ret 147 + #else 148 + jmp *%rdi 149 + #endif 150 + 151 + #elif defined(__arm__) 152 + 153 + #include <arm/arch.h> 154 + 155 + .globl cerror 156 + MI_ENTRY_POINT(___vfork) 157 + 158 + MI_GET_ADDRESS(r3, __current_pid) // get address of __current_pid 159 + #ifdef _ARM_ARCH_6 160 + L0: 161 + ldrex r1, [r3] 162 + subs r1, r1, #1 // if __current_pid <= 0, decrement it 163 + movpl r1, #-1 // otherwise put -1 in there 164 + strex r2, r1, [r3] 165 + cmp r2, #0 166 + bne L0 167 + #else 168 + mov r2, #0x80000000 // load "looking" value 169 + L0: 170 + swp r1, r2, [r3] // look at the value, lock others out 171 + cmp r1, r2 // anyone else trying to look? 172 + beq L0 // yes, so wait our turn 173 + subs r1, r1, #1 // if __current_pid <= 0, decrement it 174 + movpl r1, #-1 // otherwise put -1 in there 175 + str r1, [r3] 176 + #endif 177 + 178 + mov r1, #1 // prime results 179 + mov r12, #SYS_vfork 180 + swi #SWI_SYSCALL // make the syscall 181 + bcs Lbotch // error? 182 + cmp r1, #0 // parent (r1=0) or child(r1=1) 183 + beq Lparent 184 + 185 + //child here... 186 + mov r0, #0 187 + bx lr // return 188 + 189 + Lbotch: 190 + stmfd sp!, {lr} 191 + MI_CALL_EXTERNAL(_cerror) // jump here on error 192 + mov r0,#-1 // set the error 193 + // reload values clobbered by cerror (so we can treat them as live in Lparent) 194 + MI_GET_ADDRESS(r3, __current_pid) // get address of __current_pid 195 + ldmfd sp!, {lr} 196 + #ifndef _ARM_ARCH_6 197 + mov r2, #0x80000000 // load "looking" value 198 + #endif 199 + // fall thru 200 + 201 + Lparent: 202 + #ifdef _ARM_ARCH_6 203 + ldrex r1, [r3] 204 + add r1, r1, #1 // we're back, decrement vfork count 205 + strex r2, r1, [r3] 206 + cmp r2, #0 207 + bne Lparent 208 + #else 209 + swp r1, r2, [r3] // look at the value, lock others out 210 + cmp r1, r2 // anyone else trying to look? 211 + beq Lparent // yes, so wait our turn 212 + add r1, r1, #1 // we're back, decrement vfork count 213 + str r1, [r3] 214 + #endif 215 + 216 + bx lr // return 217 + 218 + #elif defined(__arm64__) 219 + 220 + MI_ENTRY_POINT(___vfork) 221 + ARM64_STACK_PROLOG 222 + 223 + MI_GET_ADDRESS(x9, __current_pid) 224 + Ltry_set_vfork: 225 + ldxr w10, [x9] // Get old current pid value (exclusive) 226 + mov w11, #-1 // Will be -1 if current value is positive 227 + subs w10, w10, #1 // Subtract one 228 + csel w12, w11, w10, pl // If >= 0, set to -1, else set to (current - 1) 229 + stxr w13, w12, [x9] // Attempt exclusive store to current pid 230 + cbnz w13, Ltry_set_vfork // If store failed, retry 231 + 232 + // ARM sets r1 to 1 here. I don't see why. 233 + mov w16, #SYS_vfork // Set syscall code 234 + svc #SWI_SYSCALL 235 + b.cs Lbotch 236 + cbz w1, Lparent 237 + 238 + // Child 239 + mov w0, #0 240 + ARM64_STACK_EPILOG 241 + 242 + // Error case 243 + Lbotch: 244 + PUSH_FRAME 245 + bl _cerror // Update errno 246 + mov w0, #-1 // Set return value 247 + MI_GET_ADDRESS(x9, __current_pid) // Reload current pid address 248 + POP_FRAME 249 + // Fall through 250 + Lparent: 251 + ldxr w10, [x9] // Exclusive load current pid value 252 + add w10, w10, #1 // Increment (i.e. decrement vfork count) 253 + stxr w11, w10, [x9] // Attempt exclusive store of updated vfork count 254 + cbnz w11, Lparent // If exclusive store failed, retry 255 + ARM64_STACK_EPILOG // Done, return 256 + 257 + #else 258 + #error Unsupported architecture 259 + #endif 260 + #if defined(__i386__) 261 + .globl _vfork 262 + .set _vfork, ___vfork 263 + #endif 264 + 265 + #if defined(__x86_64__) 266 + .globl _vfork 267 + .set _vfork, ___vfork 268 + #endif 269 + 270 + #if defined(__ppc__) 271 + .globl _vfork 272 + .set _vfork, ___vfork 273 + #endif 274 + 275 + #if defined(__arm64__) 276 + .globl _vfork 277 + .set _vfork, ___vfork 278 + #endif 279 +
+18
src/kernel/libsyscall/bsdsyscalls/___wait4.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 16 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_wait4 5 + #error "SYS_wait4 not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___wait4) 10 + SYSCALL_NONAME(wait4, 4, cerror) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___wait4, wait4, 4, cerror) 15 + #endif 16 + 17 + #endif 18 +
+38
src/kernel/libsyscall/bsdsyscalls/___wait4_nocancel.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 16 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_wait4_nocancel 5 + #error "SYS_wait4_nocancel not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___wait4_nocancel) 10 + SYSCALL_NONAME(wait4_nocancel, 4, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___wait4_nocancel, wait4_nocancel, 4, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 + 19 + #if defined(__i386__) 20 + .globl _wait4 21 + .set _wait4, ___wait4_nocancel 22 + #endif 23 + 24 + #if defined(__x86_64__) 25 + .globl _wait4 26 + .set _wait4, ___wait4_nocancel 27 + #endif 28 + 29 + #if defined(__ppc__) 30 + .globl _wait4 31 + .set _wait4, ___wait4_nocancel 32 + #endif 33 + 34 + #if defined(__arm64__) 35 + .globl _wait4 36 + .set _wait4, ___wait4_nocancel 37 + #endif 38 +
+42
src/kernel/libsyscall/bsdsyscalls/___waitid_nocancel.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 16 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_waitid_nocancel 5 + #error "SYS_waitid_nocancel not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___waitid_nocancel) 10 + SYSCALL_NONAME(waitid_nocancel, 4, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___waitid_nocancel, waitid_nocancel, 4, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 + 19 + #if defined(__i386__) 20 + .globl _waitid 21 + .set _waitid, ___waitid_nocancel 22 + .globl _waitid$NOCANCEL$UNIX2003 23 + .set _waitid$NOCANCEL$UNIX2003, ___waitid_nocancel 24 + #endif 25 + 26 + #if defined(__x86_64__) 27 + .globl _waitid$NOCANCEL 28 + .set _waitid$NOCANCEL, ___waitid_nocancel 29 + #endif 30 + 31 + #if defined(__ppc__) 32 + .globl _waitid 33 + .set _waitid, ___waitid_nocancel 34 + .globl _waitid$NOCANCEL$UNIX2003 35 + .set _waitid$NOCANCEL$UNIX2003, ___waitid_nocancel 36 + #endif 37 + 38 + #if defined(__arm64__) 39 + .globl _waitid$NOCANCEL 40 + .set _waitid$NOCANCEL, ___waitid_nocancel 41 + #endif 42 +
+19
src/kernel/libsyscall/bsdsyscalls/___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(__arm64__) 9 + MI_ENTRY_POINT(___work_interval_ctl) 10 + ZERO_EXTEND(3) 11 + SYSCALL_NONAME(work_interval_ctl, 4, cerror_nocancel) 12 + ret 13 + #else 14 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 15 + __SYSCALL2(___work_interval_ctl, work_interval_ctl, 4, cerror_nocancel) 16 + #endif 17 + 18 + #endif 19 +
+18
src/kernel/libsyscall/bsdsyscalls/___workq_kernreturn.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 16 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_workq_kernreturn 5 + #error "SYS_workq_kernreturn not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___workq_kernreturn) 10 + SYSCALL_NONAME(workq_kernreturn, 4, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___workq_kernreturn, workq_kernreturn, 4, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/___workq_open.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 0 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_workq_open 5 + #error "SYS_workq_open not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___workq_open) 10 + SYSCALL_NONAME(workq_open, 0, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___workq_open, workq_open, 0, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+43
src/kernel/libsyscall/bsdsyscalls/___write_nocancel.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_write_nocancel 5 + #error "SYS_write_nocancel not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___write_nocancel) 10 + ZERO_EXTEND(2) 11 + SYSCALL_NONAME(write_nocancel, 3, cerror_nocancel) 12 + ret 13 + #else 14 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 15 + __SYSCALL2(___write_nocancel, write_nocancel, 3, cerror_nocancel) 16 + #endif 17 + 18 + #endif 19 + 20 + #if defined(__i386__) 21 + .globl _write 22 + .set _write, ___write_nocancel 23 + .globl _write$NOCANCEL$UNIX2003 24 + .set _write$NOCANCEL$UNIX2003, ___write_nocancel 25 + #endif 26 + 27 + #if defined(__x86_64__) 28 + .globl _write$NOCANCEL 29 + .set _write$NOCANCEL, ___write_nocancel 30 + #endif 31 + 32 + #if defined(__ppc__) 33 + .globl _write 34 + .set _write, ___write_nocancel 35 + .globl _write$NOCANCEL$UNIX2003 36 + .set _write$NOCANCEL$UNIX2003, ___write_nocancel 37 + #endif 38 + 39 + #if defined(__arm64__) 40 + .globl _write$NOCANCEL 41 + .set _write$NOCANCEL, ___write_nocancel 42 + #endif 43 +
+42
src/kernel/libsyscall/bsdsyscalls/___writev_nocancel.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_writev_nocancel 5 + #error "SYS_writev_nocancel not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(___writev_nocancel) 10 + SYSCALL_NONAME(writev_nocancel, 3, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(___writev_nocancel, writev_nocancel, 3, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 + 19 + #if defined(__i386__) 20 + .globl _writev 21 + .set _writev, ___writev_nocancel 22 + .globl _writev$NOCANCEL$UNIX2003 23 + .set _writev$NOCANCEL$UNIX2003, ___writev_nocancel 24 + #endif 25 + 26 + #if defined(__x86_64__) 27 + .globl _writev$NOCANCEL 28 + .set _writev$NOCANCEL, ___writev_nocancel 29 + #endif 30 + 31 + #if defined(__ppc__) 32 + .globl _writev 33 + .set _writev, ___writev_nocancel 34 + .globl _writev$NOCANCEL$UNIX2003 35 + .set _writev$NOCANCEL$UNIX2003, ___writev_nocancel 36 + #endif 37 + 38 + #if defined(__arm64__) 39 + .globl _writev$NOCANCEL 40 + .set _writev$NOCANCEL, ___writev_nocancel 41 + #endif 42 +
+18
src/kernel/libsyscall/bsdsyscalls/_access.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_access 5 + #error "SYS_access not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_access) 10 + SYSCALL_NONAME(access, 2, cerror) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_access, access, 2, cerror) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_acct.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 4 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_acct 5 + #error "SYS_acct not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_acct) 10 + SYSCALL_NONAME(acct, 1, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_acct, acct, 1, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_adjtime.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_adjtime 5 + #error "SYS_adjtime not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_adjtime) 10 + SYSCALL_NONAME(adjtime, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_adjtime, adjtime, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_aio_cancel.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_aio_cancel 5 + #error "SYS_aio_cancel not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_aio_cancel) 10 + SYSCALL_NONAME(aio_cancel, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_aio_cancel, aio_cancel, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_aio_error.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 4 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_aio_error 5 + #error "SYS_aio_error not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_aio_error) 10 + SYSCALL_NONAME(aio_error, 1, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_aio_error, aio_error, 1, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_aio_fsync.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_aio_fsync 5 + #error "SYS_aio_fsync not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_aio_fsync) 10 + SYSCALL_NONAME(aio_fsync, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_aio_fsync, aio_fsync, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_aio_read.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 4 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_aio_read 5 + #error "SYS_aio_read not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_aio_read) 10 + SYSCALL_NONAME(aio_read, 1, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_aio_read, aio_read, 1, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_aio_return.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 4 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_aio_return 5 + #error "SYS_aio_return not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_aio_return) 10 + SYSCALL_NONAME(aio_return, 1, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_aio_return, aio_return, 1, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+30
src/kernel/libsyscall/bsdsyscalls/_aio_suspend.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_aio_suspend 5 + #error "SYS_aio_suspend not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_aio_suspend) 10 + SYSCALL_NONAME(aio_suspend, 3, cerror) 11 + ret 12 + #else 13 + #if defined(__x86_64__) || defined(__arm64__) 14 + __SYSCALL2(_aio_suspend, aio_suspend, 3, cerror) 15 + #else 16 + __SYSCALL2(___aio_suspend, aio_suspend, 3, cerror) 17 + #endif 18 + 19 + #endif 20 + 21 + #if defined(__i386__) 22 + .globl _aio_suspend$UNIX2003 23 + .set _aio_suspend$UNIX2003, ___aio_suspend 24 + #endif 25 + 26 + #if defined(__ppc__) 27 + .globl _aio_suspend$UNIX2003 28 + .set _aio_suspend$UNIX2003, ___aio_suspend 29 + #endif 30 +
+18
src/kernel/libsyscall/bsdsyscalls/_aio_write.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 4 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_aio_write 5 + #error "SYS_aio_write not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_aio_write) 10 + SYSCALL_NONAME(aio_write, 1, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_aio_write, aio_write, 1, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_audit.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_audit 5 + #error "SYS_audit not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_audit) 10 + SYSCALL_NONAME(audit, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_audit, audit, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_audit_session_join.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 4 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_audit_session_join 5 + #error "SYS_audit_session_join not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_audit_session_join) 10 + SYSCALL_NONAME(audit_session_join, 1, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_audit_session_join, audit_session_join, 1, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_audit_session_port.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_audit_session_port 5 + #error "SYS_audit_session_port not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_audit_session_port) 10 + SYSCALL_NONAME(audit_session_port, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_audit_session_port, audit_session_port, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_audit_session_self.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 0 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_audit_session_self 5 + #error "SYS_audit_session_self not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_audit_session_self) 10 + SYSCALL_NONAME(audit_session_self, 0, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_audit_session_self, audit_session_self, 0, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_auditctl.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 4 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_auditctl 5 + #error "SYS_auditctl not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_auditctl) 10 + SYSCALL_NONAME(auditctl, 1, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_auditctl, auditctl, 1, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_auditon.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_auditon 5 + #error "SYS_auditon not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_auditon) 10 + SYSCALL_NONAME(auditon, 3, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_auditon, auditon, 3, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_change_fdguard_np.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 24 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_change_fdguard_np 5 + #error "SYS_change_fdguard_np not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_change_fdguard_np) 10 + SYSCALL_NONAME(change_fdguard_np, 6, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_change_fdguard_np, change_fdguard_np, 6, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_chdir.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 4 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_chdir 5 + #error "SYS_chdir not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_chdir) 10 + SYSCALL_NONAME(chdir, 1, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_chdir, chdir, 1, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_chflags.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_chflags 5 + #error "SYS_chflags not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_chflags) 10 + SYSCALL_NONAME(chflags, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_chflags, chflags, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_chown.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_chown 5 + #error "SYS_chown not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_chown) 10 + SYSCALL_NONAME(chown, 3, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_chown, chown, 3, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_chroot.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 4 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_chroot 5 + #error "SYS_chroot not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_chroot) 10 + SYSCALL_NONAME(chroot, 1, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_chroot, chroot, 1, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_clonefileat.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 20 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_clonefileat 5 + #error "SYS_clonefileat not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_clonefileat) 10 + SYSCALL_NONAME(clonefileat, 5, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_clonefileat, clonefileat, 5, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+30
src/kernel/libsyscall/bsdsyscalls/_close.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 4 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_close 5 + #error "SYS_close not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_close) 10 + SYSCALL_NONAME(close, 1, cerror) 11 + ret 12 + #else 13 + #if defined(__x86_64__) || defined(__arm64__) 14 + __SYSCALL2(_close, close, 1, cerror) 15 + #else 16 + __SYSCALL2(___close, close, 1, cerror) 17 + #endif 18 + 19 + #endif 20 + 21 + #if defined(__i386__) 22 + .globl _close$UNIX2003 23 + .set _close$UNIX2003, ___close 24 + #endif 25 + 26 + #if defined(__ppc__) 27 + .globl _close$UNIX2003 28 + .set _close$UNIX2003, ___close 29 + #endif 30 +
+18
src/kernel/libsyscall/bsdsyscalls/_connectx.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 32 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_connectx 5 + #error "SYS_connectx not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_connectx) 10 + SYSCALL_NONAME(connectx, 8, cerror) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_connectx, connectx, 8, cerror) 15 + #endif 16 + 17 + #endif 18 +
+19
src/kernel/libsyscall/bsdsyscalls/_csops.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 16 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_csops 5 + #error "SYS_csops not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_csops) 10 + ZERO_EXTEND(3) 11 + SYSCALL_NONAME(csops, 4, cerror_nocancel) 12 + ret 13 + #else 14 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 15 + __SYSCALL2(_csops, csops, 4, cerror_nocancel) 16 + #endif 17 + 18 + #endif 19 +
+19
src/kernel/libsyscall/bsdsyscalls/_csops_audittoken.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 20 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_csops_audittoken 5 + #error "SYS_csops_audittoken not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_csops_audittoken) 10 + ZERO_EXTEND(3) 11 + SYSCALL_NONAME(csops_audittoken, 5, cerror_nocancel) 12 + ret 13 + #else 14 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 15 + __SYSCALL2(_csops_audittoken, csops_audittoken, 5, cerror_nocancel) 16 + #endif 17 + 18 + #endif 19 +
+18
src/kernel/libsyscall/bsdsyscalls/_disconnectx.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_disconnectx 5 + #error "SYS_disconnectx not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_disconnectx) 10 + SYSCALL_NONAME(disconnectx, 3, cerror) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_disconnectx, disconnectx, 3, cerror) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_dup.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 4 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_dup 5 + #error "SYS_dup not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_dup) 10 + SYSCALL_NONAME(dup, 1, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_dup, dup, 1, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_dup2.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_dup2 5 + #error "SYS_dup2 not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_dup2) 10 + SYSCALL_NONAME(dup2, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_dup2, dup2, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+19
src/kernel/libsyscall/bsdsyscalls/_exchangedata.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_exchangedata 5 + #error "SYS_exchangedata not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_exchangedata) 10 + ZERO_EXTEND(2) 11 + SYSCALL_NONAME(exchangedata, 3, cerror_nocancel) 12 + ret 13 + #else 14 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 15 + __SYSCALL2(_exchangedata, exchangedata, 3, cerror_nocancel) 16 + #endif 17 + 18 + #endif 19 +
+18
src/kernel/libsyscall/bsdsyscalls/_execve.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_execve 5 + #error "SYS_execve not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_execve) 10 + SYSCALL_NONAME(execve, 3, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_execve, execve, 3, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_faccessat.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 16 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_faccessat 5 + #error "SYS_faccessat not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_faccessat) 10 + SYSCALL_NONAME(faccessat, 4, cerror) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_faccessat, faccessat, 4, cerror) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_fchdir.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 4 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_fchdir 5 + #error "SYS_fchdir not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_fchdir) 10 + SYSCALL_NONAME(fchdir, 1, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_fchdir, fchdir, 1, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_fchflags.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_fchflags 5 + #error "SYS_fchflags not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_fchflags) 10 + SYSCALL_NONAME(fchflags, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_fchflags, fchflags, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_fchmodat.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 16 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_fchmodat 5 + #error "SYS_fchmodat not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_fchmodat) 10 + SYSCALL_NONAME(fchmodat, 4, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_fchmodat, fchmodat, 4, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_fchown.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_fchown 5 + #error "SYS_fchown not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_fchown) 10 + SYSCALL_NONAME(fchown, 3, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_fchown, fchown, 3, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_fchownat.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 20 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_fchownat 5 + #error "SYS_fchownat not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_fchownat) 10 + SYSCALL_NONAME(fchownat, 5, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_fchownat, fchownat, 5, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_fclonefileat.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 16 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_fclonefileat 5 + #error "SYS_fclonefileat not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_fclonefileat) 10 + SYSCALL_NONAME(fclonefileat, 4, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_fclonefileat, fclonefileat, 4, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_fdatasync.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 4 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_fdatasync 5 + #error "SYS_fdatasync not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_fdatasync) 10 + SYSCALL_NONAME(fdatasync, 1, cerror) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_fdatasync, fdatasync, 1, cerror) 15 + #endif 16 + 17 + #endif 18 +
+19
src/kernel/libsyscall/bsdsyscalls/_ffsctl.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 16 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_ffsctl 5 + #error "SYS_ffsctl not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_ffsctl) 10 + ZERO_EXTEND(1) 11 + SYSCALL_NONAME(ffsctl, 4, cerror_nocancel) 12 + ret 13 + #else 14 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 15 + __SYSCALL2(_ffsctl, ffsctl, 4, cerror_nocancel) 16 + #endif 17 + 18 + #endif 19 +
+20
src/kernel/libsyscall/bsdsyscalls/_fgetattrlist.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 20 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_fgetattrlist 5 + #error "SYS_fgetattrlist not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_fgetattrlist) 10 + ZERO_EXTEND(3) 11 + ZERO_EXTEND(4) 12 + SYSCALL_NONAME(fgetattrlist, 5, cerror_nocancel) 13 + ret 14 + #else 15 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 16 + __SYSCALL2(_fgetattrlist, fgetattrlist, 5, cerror_nocancel) 17 + #endif 18 + 19 + #endif 20 +
+19
src/kernel/libsyscall/bsdsyscalls/_fgetxattr.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 24 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_fgetxattr 5 + #error "SYS_fgetxattr not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_fgetxattr) 10 + ZERO_EXTEND(3) 11 + SYSCALL_NONAME(fgetxattr, 6, cerror_nocancel) 12 + ret 13 + #else 14 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 15 + __SYSCALL2(_fgetxattr, fgetxattr, 6, cerror_nocancel) 16 + #endif 17 + 18 + #endif 19 +
+18
src/kernel/libsyscall/bsdsyscalls/_fhopen.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_fhopen 5 + #error "SYS_fhopen not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_fhopen) 10 + SYSCALL_NONAME(fhopen, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_fhopen, fhopen, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_fileport_makefd.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 4 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_fileport_makefd 5 + #error "SYS_fileport_makefd not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_fileport_makefd) 10 + SYSCALL_NONAME(fileport_makefd, 1, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_fileport_makefd, fileport_makefd, 1, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_fileport_makeport.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_fileport_makeport 5 + #error "SYS_fileport_makeport not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_fileport_makeport) 10 + SYSCALL_NONAME(fileport_makeport, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_fileport_makeport, fileport_makeport, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+19
src/kernel/libsyscall/bsdsyscalls/_flistxattr.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 16 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_flistxattr 5 + #error "SYS_flistxattr not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_flistxattr) 10 + ZERO_EXTEND(2) 11 + SYSCALL_NONAME(flistxattr, 4, cerror_nocancel) 12 + ret 13 + #else 14 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 15 + __SYSCALL2(_flistxattr, flistxattr, 4, cerror_nocancel) 16 + #endif 17 + 18 + #endif 19 +
+18
src/kernel/libsyscall/bsdsyscalls/_flock.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_flock 5 + #error "SYS_flock not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_flock) 10 + SYSCALL_NONAME(flock, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_flock, flock, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_fmount.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 16 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_fmount 5 + #error "SYS_fmount not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_fmount) 10 + SYSCALL_NONAME(fmount, 4, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_fmount, fmount, 4, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_fpathconf.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_fpathconf 5 + #error "SYS_fpathconf not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_fpathconf) 10 + SYSCALL_NONAME(fpathconf, 2, cerror) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_fpathconf, fpathconf, 2, cerror) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_fremovexattr.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_fremovexattr 5 + #error "SYS_fremovexattr not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_fremovexattr) 10 + SYSCALL_NONAME(fremovexattr, 3, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_fremovexattr, fremovexattr, 3, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+19
src/kernel/libsyscall/bsdsyscalls/_fsctl.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 16 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_fsctl 5 + #error "SYS_fsctl not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_fsctl) 10 + ZERO_EXTEND(1) 11 + SYSCALL_NONAME(fsctl, 4, cerror_nocancel) 12 + ret 13 + #else 14 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 15 + __SYSCALL2(_fsctl, fsctl, 4, cerror_nocancel) 16 + #endif 17 + 18 + #endif 19 +
+20
src/kernel/libsyscall/bsdsyscalls/_fsetattrlist.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 20 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_fsetattrlist 5 + #error "SYS_fsetattrlist not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_fsetattrlist) 10 + ZERO_EXTEND(3) 11 + ZERO_EXTEND(4) 12 + SYSCALL_NONAME(fsetattrlist, 5, cerror_nocancel) 13 + ret 14 + #else 15 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 16 + __SYSCALL2(_fsetattrlist, fsetattrlist, 5, cerror_nocancel) 17 + #endif 18 + 19 + #endif 20 +
+19
src/kernel/libsyscall/bsdsyscalls/_fsetxattr.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 24 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_fsetxattr 5 + #error "SYS_fsetxattr not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_fsetxattr) 10 + ZERO_EXTEND(3) 11 + SYSCALL_NONAME(fsetxattr, 6, cerror_nocancel) 12 + ret 13 + #else 14 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 15 + __SYSCALL2(_fsetxattr, fsetxattr, 6, cerror_nocancel) 16 + #endif 17 + 18 + #endif 19 +
+19
src/kernel/libsyscall/bsdsyscalls/_fsgetpath.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 20 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_fsgetpath 5 + #error "SYS_fsgetpath not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_fsgetpath) 10 + ZERO_EXTEND(1) 11 + SYSCALL_NONAME(fsgetpath, 4, cerror_nocancel) 12 + ret 13 + #else 14 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 15 + __SYSCALL2(_fsgetpath, fsgetpath, 4, cerror_nocancel) 16 + #endif 17 + 18 + #endif 19 +
+19
src/kernel/libsyscall/bsdsyscalls/_fsgetpath_ext.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 24 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_fsgetpath_ext 5 + #error "SYS_fsgetpath_ext not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_fsgetpath_ext) 10 + ZERO_EXTEND(1) 11 + SYSCALL_NONAME(fsgetpath_ext, 5, cerror_nocancel) 12 + ret 13 + #else 14 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 15 + __SYSCALL2(_fsgetpath_ext, fsgetpath_ext, 5, cerror_nocancel) 16 + #endif 17 + 18 + #endif 19 +
+13
src/kernel/libsyscall/bsdsyscalls/_fstat.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_fstat 5 + #error "SYS_fstat not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) 9 + __SYSCALL2(_fstat, fstat, 2, cerror) 10 + #else 11 + __SYSCALL2(___fstat, fstat, 2, cerror) 12 + #endif 13 +
+38
src/kernel/libsyscall/bsdsyscalls/_fstat64.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_fstat64 5 + #error "SYS_fstat64 not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_fstat64) 10 + SYSCALL_NONAME(fstat64, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_fstat64, fstat64, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 + 19 + #if defined(__i386__) 20 + .globl _fstat$INODE64 21 + .set _fstat$INODE64, _fstat64 22 + #endif 23 + 24 + #if defined(__x86_64__) 25 + .globl _fstat$INODE64 26 + .set _fstat$INODE64, _fstat64 27 + #endif 28 + 29 + #if defined(__ppc__) 30 + .globl _fstat$INODE64 31 + .set _fstat$INODE64, _fstat64 32 + #endif 33 + 34 + #if defined(__arm64__) 35 + .globl _fstat 36 + .set _fstat, _fstat64 37 + #endif 38 +
+13
src/kernel/libsyscall/bsdsyscalls/_fstatat.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 16 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_fstatat 5 + #error "SYS_fstatat not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) 9 + __SYSCALL2(_fstatat, fstatat, 4, cerror) 10 + #else 11 + __SYSCALL2(___fstatat, fstatat, 4, cerror) 12 + #endif 13 +
+38
src/kernel/libsyscall/bsdsyscalls/_fstatat64.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 16 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_fstatat64 5 + #error "SYS_fstatat64 not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_fstatat64) 10 + SYSCALL_NONAME(fstatat64, 4, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_fstatat64, fstatat64, 4, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 + 19 + #if defined(__i386__) 20 + .globl _fstatat$INODE64 21 + .set _fstatat$INODE64, _fstatat64 22 + #endif 23 + 24 + #if defined(__x86_64__) 25 + .globl _fstatat$INODE64 26 + .set _fstatat$INODE64, _fstatat64 27 + #endif 28 + 29 + #if defined(__ppc__) 30 + .globl _fstatat$INODE64 31 + .set _fstatat$INODE64, _fstatat64 32 + #endif 33 + 34 + #if defined(__arm64__) 35 + .globl _fstatat 36 + .set _fstatat, _fstatat64 37 + #endif 38 +
+13
src/kernel/libsyscall/bsdsyscalls/_fstatfs.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_fstatfs 5 + #error "SYS_fstatfs not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) 9 + __SYSCALL2(_fstatfs, fstatfs, 2, cerror_nocancel) 10 + #else 11 + __SYSCALL2(___fstatfs, fstatfs, 2, cerror_nocancel) 12 + #endif 13 +
+38
src/kernel/libsyscall/bsdsyscalls/_fstatfs64.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_fstatfs64 5 + #error "SYS_fstatfs64 not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_fstatfs64) 10 + SYSCALL_NONAME(fstatfs64, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_fstatfs64, fstatfs64, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 + 19 + #if defined(__i386__) 20 + .globl _fstatfs$INODE64 21 + .set _fstatfs$INODE64, _fstatfs64 22 + #endif 23 + 24 + #if defined(__x86_64__) 25 + .globl _fstatfs$INODE64 26 + .set _fstatfs$INODE64, _fstatfs64 27 + #endif 28 + 29 + #if defined(__ppc__) 30 + .globl _fstatfs$INODE64 31 + .set _fstatfs$INODE64, _fstatfs64 32 + #endif 33 + 34 + #if defined(__arm64__) 35 + .globl _fstatfs 36 + .set _fstatfs, _fstatfs64 37 + #endif 38 +
+30
src/kernel/libsyscall/bsdsyscalls/_fsync.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 4 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_fsync 5 + #error "SYS_fsync not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_fsync) 10 + SYSCALL_NONAME(fsync, 1, cerror) 11 + ret 12 + #else 13 + #if defined(__x86_64__) || defined(__arm64__) 14 + __SYSCALL2(_fsync, fsync, 1, cerror) 15 + #else 16 + __SYSCALL2(___fsync, fsync, 1, cerror) 17 + #endif 18 + 19 + #endif 20 + 21 + #if defined(__i386__) 22 + .globl _fsync$UNIX2003 23 + .set _fsync$UNIX2003, ___fsync 24 + #endif 25 + 26 + #if defined(__ppc__) 27 + .globl _fsync$UNIX2003 28 + .set _fsync$UNIX2003, ___fsync 29 + #endif 30 +
+18
src/kernel/libsyscall/bsdsyscalls/_ftruncate.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_ftruncate 5 + #error "SYS_ftruncate not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_ftruncate) 10 + SYSCALL_NONAME(ftruncate, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_ftruncate, ftruncate, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_futimes.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_futimes 5 + #error "SYS_futimes not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_futimes) 10 + SYSCALL_NONAME(futimes, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_futimes, futimes, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+20
src/kernel/libsyscall/bsdsyscalls/_getattrlistat.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 24 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_getattrlistat 5 + #error "SYS_getattrlistat not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_getattrlistat) 10 + ZERO_EXTEND(5) 11 + ZERO_EXTEND(4) 12 + SYSCALL_NONAME(getattrlistat, 6, cerror_nocancel) 13 + ret 14 + #else 15 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 16 + __SYSCALL2(_getattrlistat, getattrlistat, 6, cerror_nocancel) 17 + #endif 18 + 19 + #endif 20 +
+19
src/kernel/libsyscall/bsdsyscalls/_getattrlistbulk.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 24 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_getattrlistbulk 5 + #error "SYS_getattrlistbulk not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_getattrlistbulk) 10 + ZERO_EXTEND(3) 11 + SYSCALL_NONAME(getattrlistbulk, 5, cerror_nocancel) 12 + ret 13 + #else 14 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 15 + __SYSCALL2(_getattrlistbulk, getattrlistbulk, 5, cerror_nocancel) 16 + #endif 17 + 18 + #endif 19 +
+18
src/kernel/libsyscall/bsdsyscalls/_getaudit_addr.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_getaudit_addr 5 + #error "SYS_getaudit_addr not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_getaudit_addr) 10 + SYSCALL_NONAME(getaudit_addr, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_getaudit_addr, getaudit_addr, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_getauid.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 4 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_getauid 5 + #error "SYS_getauid not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_getauid) 10 + SYSCALL_NONAME(getauid, 1, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_getauid, getauid, 1, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_getdirentries.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 16 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_getdirentries 5 + #error "SYS_getdirentries not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_getdirentries) 10 + SYSCALL_NONAME(getdirentries, 4, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_getdirentries, getdirentries, 4, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+20
src/kernel/libsyscall/bsdsyscalls/_getdirentriesattr.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 32 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_getdirentriesattr 5 + #error "SYS_getdirentriesattr not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_getdirentriesattr) 10 + ZERO_EXTEND(3) 11 + ZERO_EXTEND(7) 12 + SYSCALL_NONAME(getdirentriesattr, 8, cerror_nocancel) 13 + ret 14 + #else 15 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 16 + __SYSCALL2(_getdirentriesattr, getdirentriesattr, 8, cerror_nocancel) 17 + #endif 18 + 19 + #endif 20 +
+18
src/kernel/libsyscall/bsdsyscalls/_getdtablesize.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 0 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_getdtablesize 5 + #error "SYS_getdtablesize not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_getdtablesize) 10 + SYSCALL_NONAME(getdtablesize, 0, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_getdtablesize, getdtablesize, 0, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_getegid.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 0 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_getegid 5 + #error "SYS_getegid not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_getegid) 10 + SYSCALL_NONAME(getegid, 0, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_getegid, getegid, 0, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+19
src/kernel/libsyscall/bsdsyscalls/_getentropy.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_getentropy 5 + #error "SYS_getentropy not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_getentropy) 10 + ZERO_EXTEND(1) 11 + SYSCALL_NONAME(getentropy, 2, cerror_nocancel) 12 + ret 13 + #else 14 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 15 + __SYSCALL2(_getentropy, getentropy, 2, cerror_nocancel) 16 + #endif 17 + 18 + #endif 19 +
+18
src/kernel/libsyscall/bsdsyscalls/_geteuid.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 0 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_geteuid 5 + #error "SYS_geteuid not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_geteuid) 10 + SYSCALL_NONAME(geteuid, 0, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_geteuid, geteuid, 0, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_getfh.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_getfh 5 + #error "SYS_getfh not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_getfh) 10 + SYSCALL_NONAME(getfh, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_getfh, getfh, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+13
src/kernel/libsyscall/bsdsyscalls/_getfsstat.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_getfsstat 5 + #error "SYS_getfsstat not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) 9 + __SYSCALL2(_getfsstat, getfsstat, 3, cerror_nocancel) 10 + #else 11 + __SYSCALL2(___getfsstat, getfsstat, 3, cerror_nocancel) 12 + #endif 13 +
+38
src/kernel/libsyscall/bsdsyscalls/_getfsstat64.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_getfsstat64 5 + #error "SYS_getfsstat64 not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_getfsstat64) 10 + SYSCALL_NONAME(getfsstat64, 3, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_getfsstat64, getfsstat64, 3, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 + 19 + #if defined(__i386__) 20 + .globl _getfsstat$INODE64 21 + .set _getfsstat$INODE64, _getfsstat64 22 + #endif 23 + 24 + #if defined(__x86_64__) 25 + .globl _getfsstat$INODE64 26 + .set _getfsstat$INODE64, _getfsstat64 27 + #endif 28 + 29 + #if defined(__ppc__) 30 + .globl _getfsstat$INODE64 31 + .set _getfsstat$INODE64, _getfsstat64 32 + #endif 33 + 34 + #if defined(__arm64__) 35 + .globl _getfsstat 36 + .set _getfsstat, _getfsstat64 37 + #endif 38 +
+18
src/kernel/libsyscall/bsdsyscalls/_getgid.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 0 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_getgid 5 + #error "SYS_getgid not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_getgid) 10 + SYSCALL_NONAME(getgid, 0, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_getgid, getgid, 0, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_getgroups.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_getgroups 5 + #error "SYS_getgroups not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_getgroups) 10 + SYSCALL_NONAME(getgroups, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_getgroups, getgroups, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_getitimer.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_getitimer 5 + #error "SYS_getitimer not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_getitimer) 10 + SYSCALL_NONAME(getitimer, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_getitimer, getitimer, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_getpgid.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 4 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_getpgid 5 + #error "SYS_getpgid not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_getpgid) 10 + SYSCALL_NONAME(getpgid, 1, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_getpgid, getpgid, 1, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_getpgrp.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 0 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_getpgrp 5 + #error "SYS_getpgrp not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_getpgrp) 10 + SYSCALL_NONAME(getpgrp, 0, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_getpgrp, getpgrp, 0, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_getppid.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 0 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_getppid 5 + #error "SYS_getppid not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_getppid) 10 + SYSCALL_NONAME(getppid, 0, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_getppid, getppid, 0, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_getpriority.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_getpriority 5 + #error "SYS_getpriority not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_getpriority) 10 + SYSCALL_NONAME(getpriority, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_getpriority, getpriority, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_getrusage.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_getrusage 5 + #error "SYS_getrusage not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_getrusage) 10 + SYSCALL_NONAME(getrusage, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_getrusage, getrusage, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_getsid.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 4 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_getsid 5 + #error "SYS_getsid not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_getsid) 10 + SYSCALL_NONAME(getsid, 1, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_getsid, getsid, 1, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_getsockopt.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 20 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_getsockopt 5 + #error "SYS_getsockopt not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_getsockopt) 10 + SYSCALL_NONAME(getsockopt, 5, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_getsockopt, getsockopt, 5, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_getuid.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 0 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_getuid 5 + #error "SYS_getuid not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_getuid) 10 + SYSCALL_NONAME(getuid, 0, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_getuid, getuid, 0, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+19
src/kernel/libsyscall/bsdsyscalls/_getxattr.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 24 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_getxattr 5 + #error "SYS_getxattr not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_getxattr) 10 + ZERO_EXTEND(3) 11 + SYSCALL_NONAME(getxattr, 6, cerror_nocancel) 12 + ret 13 + #else 14 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 15 + __SYSCALL2(_getxattr, getxattr, 6, cerror_nocancel) 16 + #endif 17 + 18 + #endif 19 +
+19
src/kernel/libsyscall/bsdsyscalls/_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(__arm64__) 9 + MI_ENTRY_POINT(_grab_pgo_data) 10 + SIGN_EXTEND(3) 11 + SYSCALL_NONAME(grab_pgo_data, 4, cerror_nocancel) 12 + ret 13 + #else 14 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 15 + __SYSCALL2(_grab_pgo_data, grab_pgo_data, 4, cerror_nocancel) 16 + #endif 17 + 18 + #endif 19 +
+18
src/kernel/libsyscall/bsdsyscalls/_guarded_close_np.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_guarded_close_np 5 + #error "SYS_guarded_close_np not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_guarded_close_np) 10 + SYSCALL_NONAME(guarded_close_np, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_guarded_close_np, guarded_close_np, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_guarded_kqueue_np.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_guarded_kqueue_np 5 + #error "SYS_guarded_kqueue_np not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_guarded_kqueue_np) 10 + SYSCALL_NONAME(guarded_kqueue_np, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_guarded_kqueue_np, guarded_kqueue_np, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+19
src/kernel/libsyscall/bsdsyscalls/_guarded_pwrite_np.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 24 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_guarded_pwrite_np 5 + #error "SYS_guarded_pwrite_np not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_guarded_pwrite_np) 10 + ZERO_EXTEND(3) 11 + SYSCALL_NONAME(guarded_pwrite_np, 5, cerror_nocancel) 12 + ret 13 + #else 14 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 15 + __SYSCALL2(_guarded_pwrite_np, guarded_pwrite_np, 5, cerror_nocancel) 16 + #endif 17 + 18 + #endif 19 +
+19
src/kernel/libsyscall/bsdsyscalls/_guarded_write_np.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 16 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_guarded_write_np 5 + #error "SYS_guarded_write_np not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_guarded_write_np) 10 + ZERO_EXTEND(3) 11 + SYSCALL_NONAME(guarded_write_np, 4, cerror_nocancel) 12 + ret 13 + #else 14 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 15 + __SYSCALL2(_guarded_write_np, guarded_write_np, 4, cerror_nocancel) 16 + #endif 17 + 18 + #endif 19 +
+18
src/kernel/libsyscall/bsdsyscalls/_guarded_writev_np.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 16 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_guarded_writev_np 5 + #error "SYS_guarded_writev_np not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_guarded_writev_np) 10 + SYSCALL_NONAME(guarded_writev_np, 4, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_guarded_writev_np, guarded_writev_np, 4, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_issetugid.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 0 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_issetugid 5 + #error "SYS_issetugid not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_issetugid) 10 + SYSCALL_NONAME(issetugid, 0, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_issetugid, issetugid, 0, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_kas_info.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_kas_info 5 + #error "SYS_kas_info not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_kas_info) 10 + SYSCALL_NONAME(kas_info, 3, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_kas_info, kas_info, 3, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_kevent.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 24 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_kevent 5 + #error "SYS_kevent not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_kevent) 10 + SYSCALL_NONAME(kevent, 6, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_kevent, kevent, 6, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_kevent64.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 28 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_kevent64 5 + #error "SYS_kevent64 not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_kevent64) 10 + SYSCALL_NONAME(kevent64, 7, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_kevent64, kevent64, 7, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_kevent_id.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 36 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_kevent_id 5 + #error "SYS_kevent_id not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_kevent_id) 10 + SYSCALL_NONAME(kevent_id, 8, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_kevent_id, kevent_id, 8, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_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(__arm64__) 9 + MI_ENTRY_POINT(_kevent_qos) 10 + SYSCALL_NONAME(kevent_qos, 8, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_kevent_qos, kevent_qos, 8, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_kqueue.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 0 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_kqueue 5 + #error "SYS_kqueue not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_kqueue) 10 + SYSCALL_NONAME(kqueue, 0, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_kqueue, kqueue, 0, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_ledger.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 16 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_ledger 5 + #error "SYS_ledger not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_ledger) 10 + SYSCALL_NONAME(ledger, 4, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_ledger, ledger, 4, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_link.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_link 5 + #error "SYS_link not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_link) 10 + SYSCALL_NONAME(link, 2, cerror) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_link, link, 2, cerror) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_linkat.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 20 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_linkat 5 + #error "SYS_linkat not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_linkat) 10 + SYSCALL_NONAME(linkat, 5, cerror) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_linkat, linkat, 5, cerror) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_lio_listio.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 16 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_lio_listio 5 + #error "SYS_lio_listio not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_lio_listio) 10 + SYSCALL_NONAME(lio_listio, 4, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_lio_listio, lio_listio, 4, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+19
src/kernel/libsyscall/bsdsyscalls/_listxattr.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 16 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_listxattr 5 + #error "SYS_listxattr not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_listxattr) 10 + ZERO_EXTEND(2) 11 + SYSCALL_NONAME(listxattr, 4, cerror_nocancel) 12 + ret 13 + #else 14 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 15 + __SYSCALL2(_listxattr, listxattr, 4, cerror_nocancel) 16 + #endif 17 + 18 + #endif 19 +
+13
src/kernel/libsyscall/bsdsyscalls/_lstat.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_lstat 5 + #error "SYS_lstat not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) 9 + __SYSCALL2(_lstat, lstat, 2, cerror) 10 + #else 11 + __SYSCALL2(___lstat, lstat, 2, cerror) 12 + #endif 13 +
+38
src/kernel/libsyscall/bsdsyscalls/_lstat64.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_lstat64 5 + #error "SYS_lstat64 not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_lstat64) 10 + SYSCALL_NONAME(lstat64, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_lstat64, lstat64, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 + 19 + #if defined(__i386__) 20 + .globl _lstat$INODE64 21 + .set _lstat$INODE64, _lstat64 22 + #endif 23 + 24 + #if defined(__x86_64__) 25 + .globl _lstat$INODE64 26 + .set _lstat$INODE64, _lstat64 27 + #endif 28 + 29 + #if defined(__ppc__) 30 + .globl _lstat$INODE64 31 + .set _lstat$INODE64, _lstat64 32 + #endif 33 + 34 + #if defined(__arm64__) 35 + .globl _lstat 36 + .set _lstat, _lstat64 37 + #endif 38 +
+39
src/kernel/libsyscall/bsdsyscalls/_madvise.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_madvise 5 + #error "SYS_madvise not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_madvise) 10 + ZERO_EXTEND(1) 11 + SYSCALL_NONAME(madvise, 3, cerror_nocancel) 12 + ret 13 + #else 14 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 15 + __SYSCALL2(_madvise, madvise, 3, cerror_nocancel) 16 + #endif 17 + 18 + #endif 19 + 20 + #if defined(__i386__) 21 + .globl _posix_madvise 22 + .set _posix_madvise, _madvise 23 + #endif 24 + 25 + #if defined(__x86_64__) 26 + .globl _posix_madvise 27 + .set _posix_madvise, _madvise 28 + #endif 29 + 30 + #if defined(__ppc__) 31 + .globl _posix_madvise 32 + .set _posix_madvise, _madvise 33 + #endif 34 + 35 + #if defined(__arm64__) 36 + .globl _posix_madvise 37 + .set _posix_madvise, _madvise 38 + #endif 39 +
+19
src/kernel/libsyscall/bsdsyscalls/_memorystatus_control.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 20 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_memorystatus_control 5 + #error "SYS_memorystatus_control not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_memorystatus_control) 10 + ZERO_EXTEND(4) 11 + SYSCALL_NONAME(memorystatus_control, 5, cerror_nocancel) 12 + ret 13 + #else 14 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 15 + __SYSCALL2(_memorystatus_control, memorystatus_control, 5, cerror_nocancel) 16 + #endif 17 + 18 + #endif 19 +
+18
src/kernel/libsyscall/bsdsyscalls/_memorystatus_get_level.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 4 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_memorystatus_get_level 5 + #error "SYS_memorystatus_get_level not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_memorystatus_get_level) 10 + SYSCALL_NONAME(memorystatus_get_level, 1, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_memorystatus_get_level, memorystatus_get_level, 1, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+19
src/kernel/libsyscall/bsdsyscalls/_mincore.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_mincore 5 + #error "SYS_mincore not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_mincore) 10 + ZERO_EXTEND(1) 11 + SYSCALL_NONAME(mincore, 3, cerror_nocancel) 12 + ret 13 + #else 14 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 15 + __SYSCALL2(_mincore, mincore, 3, cerror_nocancel) 16 + #endif 17 + 18 + #endif 19 +
+19
src/kernel/libsyscall/bsdsyscalls/_minherit.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_minherit 5 + #error "SYS_minherit not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_minherit) 10 + ZERO_EXTEND(1) 11 + SYSCALL_NONAME(minherit, 3, cerror_nocancel) 12 + ret 13 + #else 14 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 15 + __SYSCALL2(_minherit, minherit, 3, cerror_nocancel) 16 + #endif 17 + 18 + #endif 19 +
+18
src/kernel/libsyscall/bsdsyscalls/_mkdir.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_mkdir 5 + #error "SYS_mkdir not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_mkdir) 10 + SYSCALL_NONAME(mkdir, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_mkdir, mkdir, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_mkdirat.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_mkdirat 5 + #error "SYS_mkdirat not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_mkdirat) 10 + SYSCALL_NONAME(mkdirat, 3, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_mkdirat, mkdirat, 3, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_mkfifo.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_mkfifo 5 + #error "SYS_mkfifo not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_mkfifo) 10 + SYSCALL_NONAME(mkfifo, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_mkfifo, mkfifo, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_mknod.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_mknod 5 + #error "SYS_mknod not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_mknod) 10 + SYSCALL_NONAME(mknod, 3, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_mknod, mknod, 3, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+19
src/kernel/libsyscall/bsdsyscalls/_mlock.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_mlock 5 + #error "SYS_mlock not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_mlock) 10 + ZERO_EXTEND(1) 11 + SYSCALL_NONAME(mlock, 2, cerror_nocancel) 12 + ret 13 + #else 14 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 15 + __SYSCALL2(_mlock, mlock, 2, cerror_nocancel) 16 + #endif 17 + 18 + #endif 19 +
+18
src/kernel/libsyscall/bsdsyscalls/_mlockall.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 4 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_mlockall 5 + #error "SYS_mlockall not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_mlockall) 10 + SYSCALL_NONAME(mlockall, 1, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_mlockall, mlockall, 1, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_mount.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 16 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_mount 5 + #error "SYS_mount not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_mount) 10 + SYSCALL_NONAME(mount, 4, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_mount, mount, 4, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+19
src/kernel/libsyscall/bsdsyscalls/_mremap_encrypted.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 20 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_mremap_encrypted 5 + #error "SYS_mremap_encrypted not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_mremap_encrypted) 10 + ZERO_EXTEND(1) 11 + SYSCALL_NONAME(mremap_encrypted, 5, cerror_nocancel) 12 + ret 13 + #else 14 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 15 + __SYSCALL2(_mremap_encrypted, mremap_encrypted, 5, cerror_nocancel) 16 + #endif 17 + 18 + #endif 19 +
+18
src/kernel/libsyscall/bsdsyscalls/_msgget.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_msgget 5 + #error "SYS_msgget not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_msgget) 10 + SYSCALL_NONAME(msgget, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_msgget, msgget, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+32
src/kernel/libsyscall/bsdsyscalls/_msgrcv.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 20 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_msgrcv 5 + #error "SYS_msgrcv not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_msgrcv) 10 + SIGN_EXTEND(3) 11 + ZERO_EXTEND(2) 12 + SYSCALL_NONAME(msgrcv, 5, cerror) 13 + ret 14 + #else 15 + #if defined(__x86_64__) || defined(__arm64__) 16 + __SYSCALL2(_msgrcv, msgrcv, 5, cerror) 17 + #else 18 + __SYSCALL2(___msgrcv, msgrcv, 5, cerror) 19 + #endif 20 + 21 + #endif 22 + 23 + #if defined(__i386__) 24 + .globl _msgrcv$UNIX2003 25 + .set _msgrcv$UNIX2003, ___msgrcv 26 + #endif 27 + 28 + #if defined(__ppc__) 29 + .globl _msgrcv$UNIX2003 30 + .set _msgrcv$UNIX2003, ___msgrcv 31 + #endif 32 +
+31
src/kernel/libsyscall/bsdsyscalls/_msgsnd.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 16 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_msgsnd 5 + #error "SYS_msgsnd not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_msgsnd) 10 + ZERO_EXTEND(2) 11 + SYSCALL_NONAME(msgsnd, 4, cerror) 12 + ret 13 + #else 14 + #if defined(__x86_64__) || defined(__arm64__) 15 + __SYSCALL2(_msgsnd, msgsnd, 4, cerror) 16 + #else 17 + __SYSCALL2(___msgsnd, msgsnd, 4, cerror) 18 + #endif 19 + 20 + #endif 21 + 22 + #if defined(__i386__) 23 + .globl _msgsnd$UNIX2003 24 + .set _msgsnd$UNIX2003, ___msgsnd 25 + #endif 26 + 27 + #if defined(__ppc__) 28 + .globl _msgsnd$UNIX2003 29 + .set _msgsnd$UNIX2003, ___msgsnd 30 + #endif 31 +
+19
src/kernel/libsyscall/bsdsyscalls/_munlock.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_munlock 5 + #error "SYS_munlock not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_munlock) 10 + ZERO_EXTEND(1) 11 + SYSCALL_NONAME(munlock, 2, cerror_nocancel) 12 + ret 13 + #else 14 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 15 + __SYSCALL2(_munlock, munlock, 2, cerror_nocancel) 16 + #endif 17 + 18 + #endif 19 +
+18
src/kernel/libsyscall/bsdsyscalls/_munlockall.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 4 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_munlockall 5 + #error "SYS_munlockall not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_munlockall) 10 + SYSCALL_NONAME(munlockall, 1, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_munlockall, munlockall, 1, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+20
src/kernel/libsyscall/bsdsyscalls/_necp_client_action.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 24 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_necp_client_action 5 + #error "SYS_necp_client_action not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_necp_client_action) 10 + ZERO_EXTEND(5) 11 + ZERO_EXTEND(3) 12 + SYSCALL_NONAME(necp_client_action, 6, cerror_nocancel) 13 + ret 14 + #else 15 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 16 + __SYSCALL2(_necp_client_action, necp_client_action, 6, cerror_nocancel) 17 + #endif 18 + 19 + #endif 20 +
+19
src/kernel/libsyscall/bsdsyscalls/_necp_match_policy.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_necp_match_policy 5 + #error "SYS_necp_match_policy not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_necp_match_policy) 10 + ZERO_EXTEND(1) 11 + SYSCALL_NONAME(necp_match_policy, 3, cerror_nocancel) 12 + ret 13 + #else 14 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 15 + __SYSCALL2(_necp_match_policy, necp_match_policy, 3, cerror_nocancel) 16 + #endif 17 + 18 + #endif 19 +
+18
src/kernel/libsyscall/bsdsyscalls/_necp_open.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 4 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_necp_open 5 + #error "SYS_necp_open not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_necp_open) 10 + SYSCALL_NONAME(necp_open, 1, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_necp_open, necp_open, 1, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+20
src/kernel/libsyscall/bsdsyscalls/_necp_session_action.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 24 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_necp_session_action 5 + #error "SYS_necp_session_action not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_necp_session_action) 10 + ZERO_EXTEND(3) 11 + ZERO_EXTEND(5) 12 + SYSCALL_NONAME(necp_session_action, 6, cerror_nocancel) 13 + ret 14 + #else 15 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 16 + __SYSCALL2(_necp_session_action, necp_session_action, 6, cerror_nocancel) 17 + #endif 18 + 19 + #endif 20 +
+18
src/kernel/libsyscall/bsdsyscalls/_necp_session_open.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 4 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_necp_session_open 5 + #error "SYS_necp_session_open not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_necp_session_open) 10 + SYSCALL_NONAME(necp_session_open, 1, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_necp_session_open, necp_session_open, 1, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_net_qos_guideline.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_net_qos_guideline 5 + #error "SYS_net_qos_guideline not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_net_qos_guideline) 10 + SYSCALL_NONAME(net_qos_guideline, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_net_qos_guideline, net_qos_guideline, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+19
src/kernel/libsyscall/bsdsyscalls/_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(__arm64__) 9 + MI_ENTRY_POINT(_netagent_trigger) 10 + ZERO_EXTEND(1) 11 + SYSCALL_NONAME(netagent_trigger, 2, cerror_nocancel) 12 + ret 13 + #else 14 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 15 + __SYSCALL2(_netagent_trigger, netagent_trigger, 2, cerror_nocancel) 16 + #endif 17 + 18 + #endif 19 +
+18
src/kernel/libsyscall/bsdsyscalls/_nfsclnt.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_nfsclnt 5 + #error "SYS_nfsclnt not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_nfsclnt) 10 + SYSCALL_NONAME(nfsclnt, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_nfsclnt, nfsclnt, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_nfssvc.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_nfssvc 5 + #error "SYS_nfssvc not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_nfssvc) 10 + SYSCALL_NONAME(nfssvc, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_nfssvc, nfssvc, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_ntp_adjtime.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 4 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_ntp_adjtime 5 + #error "SYS_ntp_adjtime not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_ntp_adjtime) 10 + SYSCALL_NONAME(ntp_adjtime, 1, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_ntp_adjtime, ntp_adjtime, 1, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_ntp_gettime.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 4 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_ntp_gettime 5 + #error "SYS_ntp_gettime not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_ntp_gettime) 10 + SYSCALL_NONAME(ntp_gettime, 1, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_ntp_gettime, ntp_gettime, 1, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_openbyid_np.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_openbyid_np 5 + #error "SYS_openbyid_np not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_openbyid_np) 10 + SYSCALL_NONAME(openbyid_np, 3, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_openbyid_np, openbyid_np, 3, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_os_fault_with_payload.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 32 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_os_fault_with_payload 5 + #error "SYS_os_fault_with_payload not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_os_fault_with_payload) 10 + SYSCALL_NONAME(os_fault_with_payload, 6, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_os_fault_with_payload, os_fault_with_payload, 6, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_pathconf.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_pathconf 5 + #error "SYS_pathconf not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_pathconf) 10 + SYSCALL_NONAME(pathconf, 2, cerror) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_pathconf, pathconf, 2, cerror) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_peeloff.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_peeloff 5 + #error "SYS_peeloff not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_peeloff) 10 + SYSCALL_NONAME(peeloff, 2, cerror) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_peeloff, peeloff, 2, cerror) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_pid_hibernate.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 4 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_pid_hibernate 5 + #error "SYS_pid_hibernate not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_pid_hibernate) 10 + SYSCALL_NONAME(pid_hibernate, 1, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_pid_hibernate, pid_hibernate, 1, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_pid_resume.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 4 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_pid_resume 5 + #error "SYS_pid_resume not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_pid_resume) 10 + SYSCALL_NONAME(pid_resume, 1, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_pid_resume, pid_resume, 1, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_pid_shutdown_sockets.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_pid_shutdown_sockets 5 + #error "SYS_pid_shutdown_sockets not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_pid_shutdown_sockets) 10 + SYSCALL_NONAME(pid_shutdown_sockets, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_pid_shutdown_sockets, pid_shutdown_sockets, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_pid_suspend.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 4 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_pid_suspend 5 + #error "SYS_pid_suspend not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_pid_suspend) 10 + SYSCALL_NONAME(pid_suspend, 1, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_pid_suspend, pid_suspend, 1, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_pivot_root.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_pivot_root 5 + #error "SYS_pivot_root not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_pivot_root) 10 + SYSCALL_NONAME(pivot_root, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_pivot_root, pivot_root, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+30
src/kernel/libsyscall/bsdsyscalls/_poll.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_poll 5 + #error "SYS_poll not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_poll) 10 + SYSCALL_NONAME(poll, 3, cerror) 11 + ret 12 + #else 13 + #if defined(__x86_64__) || defined(__arm64__) 14 + __SYSCALL2(_poll, poll, 3, cerror) 15 + #else 16 + __SYSCALL2(___poll, poll, 3, cerror) 17 + #endif 18 + 19 + #endif 20 + 21 + #if defined(__i386__) 22 + .globl _poll$UNIX2003 23 + .set _poll$UNIX2003, ___poll 24 + #endif 25 + 26 + #if defined(__ppc__) 27 + .globl _poll$UNIX2003 28 + .set _poll$UNIX2003, ___poll 29 + #endif 30 +
+31
src/kernel/libsyscall/bsdsyscalls/_pread.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 20 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_pread 5 + #error "SYS_pread not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_pread) 10 + ZERO_EXTEND(2) 11 + SYSCALL_NONAME(pread, 4, cerror) 12 + ret 13 + #else 14 + #if defined(__x86_64__) || defined(__arm64__) 15 + __SYSCALL2(_pread, pread, 4, cerror) 16 + #else 17 + __SYSCALL2(___pread, pread, 4, cerror) 18 + #endif 19 + 20 + #endif 21 + 22 + #if defined(__i386__) 23 + .globl _pread$UNIX2003 24 + .set _pread$UNIX2003, ___pread 25 + #endif 26 + 27 + #if defined(__ppc__) 28 + .globl _pread$UNIX2003 29 + .set _pread$UNIX2003, ___pread 30 + #endif 31 +
+20
src/kernel/libsyscall/bsdsyscalls/_preadv.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 20 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_preadv 5 + #error "SYS_preadv not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_preadv) 10 + SYSCALL_NONAME(preadv, 4, cerror) 11 + ret 12 + #else 13 + #if defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_preadv, preadv, 4, cerror) 15 + #else 16 + __SYSCALL2(___preadv, preadv, 4, cerror) 17 + #endif 18 + 19 + #endif 20 +
+18
src/kernel/libsyscall/bsdsyscalls/_proc_rlimit_control.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_proc_rlimit_control 5 + #error "SYS_proc_rlimit_control not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_proc_rlimit_control) 10 + SYSCALL_NONAME(proc_rlimit_control, 3, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_proc_rlimit_control, proc_rlimit_control, 3, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_proc_trace_log.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_proc_trace_log 5 + #error "SYS_proc_trace_log not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_proc_trace_log) 10 + SYSCALL_NONAME(proc_trace_log, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_proc_trace_log, proc_trace_log, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+19
src/kernel/libsyscall/bsdsyscalls/_proc_uuid_policy.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 16 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_proc_uuid_policy 5 + #error "SYS_proc_uuid_policy not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_proc_uuid_policy) 10 + ZERO_EXTEND(2) 11 + SYSCALL_NONAME(proc_uuid_policy, 4, cerror_nocancel) 12 + ret 13 + #else 14 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 15 + __SYSCALL2(_proc_uuid_policy, proc_uuid_policy, 4, cerror_nocancel) 16 + #endif 17 + 18 + #endif 19 +
+31
src/kernel/libsyscall/bsdsyscalls/_pwrite.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 20 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_pwrite 5 + #error "SYS_pwrite not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_pwrite) 10 + ZERO_EXTEND(2) 11 + SYSCALL_NONAME(pwrite, 4, cerror) 12 + ret 13 + #else 14 + #if defined(__x86_64__) || defined(__arm64__) 15 + __SYSCALL2(_pwrite, pwrite, 4, cerror) 16 + #else 17 + __SYSCALL2(___pwrite, pwrite, 4, cerror) 18 + #endif 19 + 20 + #endif 21 + 22 + #if defined(__i386__) 23 + .globl _pwrite$UNIX2003 24 + .set _pwrite$UNIX2003, ___pwrite 25 + #endif 26 + 27 + #if defined(__ppc__) 28 + .globl _pwrite$UNIX2003 29 + .set _pwrite$UNIX2003, ___pwrite 30 + #endif 31 +
+20
src/kernel/libsyscall/bsdsyscalls/_pwritev.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 20 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_pwritev 5 + #error "SYS_pwritev not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_pwritev) 10 + SYSCALL_NONAME(pwritev, 4, cerror) 11 + ret 12 + #else 13 + #if defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_pwritev, pwritev, 4, cerror) 15 + #else 16 + __SYSCALL2(___pwritev, pwritev, 4, cerror) 17 + #endif 18 + 19 + #endif 20 +
+18
src/kernel/libsyscall/bsdsyscalls/_quotactl.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 16 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_quotactl 5 + #error "SYS_quotactl not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_quotactl) 10 + SYSCALL_NONAME(quotactl, 4, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_quotactl, quotactl, 4, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+31
src/kernel/libsyscall/bsdsyscalls/_read.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_read 5 + #error "SYS_read not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_read) 10 + ZERO_EXTEND(2) 11 + SYSCALL_NONAME(read, 3, cerror) 12 + ret 13 + #else 14 + #if defined(__x86_64__) || defined(__arm64__) 15 + __SYSCALL2(_read, read, 3, cerror) 16 + #else 17 + __SYSCALL2(___read, read, 3, cerror) 18 + #endif 19 + 20 + #endif 21 + 22 + #if defined(__i386__) 23 + .globl _read$UNIX2003 24 + .set _read$UNIX2003, ___read 25 + #endif 26 + 27 + #if defined(__ppc__) 28 + .globl _read$UNIX2003 29 + .set _read$UNIX2003, ___read 30 + #endif 31 +
+18
src/kernel/libsyscall/bsdsyscalls/_readlink.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_readlink 5 + #error "SYS_readlink not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_readlink) 10 + SYSCALL_NONAME(readlink, 3, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_readlink, readlink, 3, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+19
src/kernel/libsyscall/bsdsyscalls/_readlinkat.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 16 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_readlinkat 5 + #error "SYS_readlinkat not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_readlinkat) 10 + ZERO_EXTEND(3) 11 + SYSCALL_NONAME(readlinkat, 4, cerror_nocancel) 12 + ret 13 + #else 14 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 15 + __SYSCALL2(_readlinkat, readlinkat, 4, cerror_nocancel) 16 + #endif 17 + 18 + #endif 19 +
+30
src/kernel/libsyscall/bsdsyscalls/_readv.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_readv 5 + #error "SYS_readv not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_readv) 10 + SYSCALL_NONAME(readv, 3, cerror) 11 + ret 12 + #else 13 + #if defined(__x86_64__) || defined(__arm64__) 14 + __SYSCALL2(_readv, readv, 3, cerror) 15 + #else 16 + __SYSCALL2(___readv, readv, 3, cerror) 17 + #endif 18 + 19 + #endif 20 + 21 + #if defined(__i386__) 22 + .globl _readv$UNIX2003 23 + .set _readv$UNIX2003, ___readv 24 + #endif 25 + 26 + #if defined(__ppc__) 27 + .globl _readv$UNIX2003 28 + .set _readv$UNIX2003, ___readv 29 + #endif 30 +
+18
src/kernel/libsyscall/bsdsyscalls/_recvmsg_x.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 16 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_recvmsg_x 5 + #error "SYS_recvmsg_x not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_recvmsg_x) 10 + SYSCALL_NONAME(recvmsg_x, 4, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_recvmsg_x, recvmsg_x, 4, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_removexattr.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_removexattr 5 + #error "SYS_removexattr not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_removexattr) 10 + SYSCALL_NONAME(removexattr, 3, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_removexattr, removexattr, 3, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_revoke.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 4 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_revoke 5 + #error "SYS_revoke not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_revoke) 10 + SYSCALL_NONAME(revoke, 1, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_revoke, revoke, 1, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_searchfs.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 24 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_searchfs 5 + #error "SYS_searchfs not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_searchfs) 10 + SYSCALL_NONAME(searchfs, 6, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_searchfs, searchfs, 6, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_sem_close.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 4 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_sem_close 5 + #error "SYS_sem_close not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_sem_close) 10 + SYSCALL_NONAME(sem_close, 1, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_sem_close, sem_close, 1, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_sem_post.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 4 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_sem_post 5 + #error "SYS_sem_post not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_sem_post) 10 + SYSCALL_NONAME(sem_post, 1, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_sem_post, sem_post, 1, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_sem_trywait.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 4 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_sem_trywait 5 + #error "SYS_sem_trywait not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_sem_trywait) 10 + SYSCALL_NONAME(sem_trywait, 1, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_sem_trywait, sem_trywait, 1, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_sem_unlink.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 4 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_sem_unlink 5 + #error "SYS_sem_unlink not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_sem_unlink) 10 + SYSCALL_NONAME(sem_unlink, 1, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_sem_unlink, sem_unlink, 1, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+30
src/kernel/libsyscall/bsdsyscalls/_sem_wait.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 4 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_sem_wait 5 + #error "SYS_sem_wait not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_sem_wait) 10 + SYSCALL_NONAME(sem_wait, 1, cerror) 11 + ret 12 + #else 13 + #if defined(__x86_64__) || defined(__arm64__) 14 + __SYSCALL2(_sem_wait, sem_wait, 1, cerror) 15 + #else 16 + __SYSCALL2(___sem_wait, sem_wait, 1, cerror) 17 + #endif 18 + 19 + #endif 20 + 21 + #if defined(__i386__) 22 + .globl _sem_wait$UNIX2003 23 + .set _sem_wait$UNIX2003, ___sem_wait 24 + #endif 25 + 26 + #if defined(__ppc__) 27 + .globl _sem_wait$UNIX2003 28 + .set _sem_wait$UNIX2003, ___sem_wait 29 + #endif 30 +
+18
src/kernel/libsyscall/bsdsyscalls/_semget.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_semget 5 + #error "SYS_semget not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_semget) 10 + SYSCALL_NONAME(semget, 3, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_semget, semget, 3, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_semop.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_semop 5 + #error "SYS_semop not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_semop) 10 + SYSCALL_NONAME(semop, 3, cerror) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_semop, semop, 3, cerror) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_sendfile.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 28 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_sendfile 5 + #error "SYS_sendfile not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_sendfile) 10 + SYSCALL_NONAME(sendfile, 6, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_sendfile, sendfile, 6, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_sendmsg_x.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 16 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_sendmsg_x 5 + #error "SYS_sendmsg_x not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_sendmsg_x) 10 + SYSCALL_NONAME(sendmsg_x, 4, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_sendmsg_x, sendmsg_x, 4, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+19
src/kernel/libsyscall/bsdsyscalls/_setattrlistat.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 24 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_setattrlistat 5 + #error "SYS_setattrlistat not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_setattrlistat) 10 + ZERO_EXTEND(4) 11 + SYSCALL_NONAME(setattrlistat, 6, cerror_nocancel) 12 + ret 13 + #else 14 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 15 + __SYSCALL2(_setattrlistat, setattrlistat, 6, cerror_nocancel) 16 + #endif 17 + 18 + #endif 19 +
+18
src/kernel/libsyscall/bsdsyscalls/_setaudit_addr.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_setaudit_addr 5 + #error "SYS_setaudit_addr not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_setaudit_addr) 10 + SYSCALL_NONAME(setaudit_addr, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_setaudit_addr, setaudit_addr, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_setauid.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 4 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_setauid 5 + #error "SYS_setauid not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_setauid) 10 + SYSCALL_NONAME(setauid, 1, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_setauid, setauid, 1, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_setegid.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 4 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_setegid 5 + #error "SYS_setegid not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_setegid) 10 + SYSCALL_NONAME(setegid, 1, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_setegid, setegid, 1, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_seteuid.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 4 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_seteuid 5 + #error "SYS_seteuid not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_seteuid) 10 + SYSCALL_NONAME(seteuid, 1, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_seteuid, seteuid, 1, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_setgid.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 4 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_setgid 5 + #error "SYS_setgid not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_setgid) 10 + SYSCALL_NONAME(setgid, 1, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_setgid, setgid, 1, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_setgroups.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_setgroups 5 + #error "SYS_setgroups not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_setgroups) 10 + SYSCALL_NONAME(setgroups, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_setgroups, setgroups, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_setitimer.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_setitimer 5 + #error "SYS_setitimer not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_setitimer) 10 + SYSCALL_NONAME(setitimer, 3, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_setitimer, setitimer, 3, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+28
src/kernel/libsyscall/bsdsyscalls/_setpgid.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_setpgid 5 + #error "SYS_setpgid not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_setpgid) 10 + SYSCALL_NONAME(setpgid, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_setpgid, setpgid, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 + 19 + #if defined(__i386__) 20 + .globl _setpgrp 21 + .set _setpgrp, _setpgid 22 + #endif 23 + 24 + #if defined(__ppc__) 25 + .globl _setpgrp 26 + .set _setpgrp, _setpgid 27 + #endif 28 +
+18
src/kernel/libsyscall/bsdsyscalls/_setprivexec.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 4 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_setprivexec 5 + #error "SYS_setprivexec not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_setprivexec) 10 + SYSCALL_NONAME(setprivexec, 1, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_setprivexec, setprivexec, 1, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_setsid.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 0 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_setsid 5 + #error "SYS_setsid not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_setsid) 10 + SYSCALL_NONAME(setsid, 0, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_setsid, setsid, 0, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_setsockopt.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 20 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_setsockopt 5 + #error "SYS_setsockopt not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_setsockopt) 10 + SYSCALL_NONAME(setsockopt, 5, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_setsockopt, setsockopt, 5, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_setuid.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 4 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_setuid 5 + #error "SYS_setuid not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_setuid) 10 + SYSCALL_NONAME(setuid, 1, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_setuid, setuid, 1, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+19
src/kernel/libsyscall/bsdsyscalls/_setxattr.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 24 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_setxattr 5 + #error "SYS_setxattr not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_setxattr) 10 + ZERO_EXTEND(3) 11 + SYSCALL_NONAME(setxattr, 6, cerror_nocancel) 12 + ret 13 + #else 14 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 15 + __SYSCALL2(_setxattr, setxattr, 6, cerror_nocancel) 16 + #endif 17 + 18 + #endif 19 +
+18
src/kernel/libsyscall/bsdsyscalls/_shm_unlink.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 4 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_shm_unlink 5 + #error "SYS_shm_unlink not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_shm_unlink) 10 + SYSCALL_NONAME(shm_unlink, 1, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_shm_unlink, shm_unlink, 1, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_shmat.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_shmat 5 + #error "SYS_shmat not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_shmat) 10 + SYSCALL_NONAME(shmat, 3, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_shmat, shmat, 3, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_shmdt.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 4 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_shmdt 5 + #error "SYS_shmdt not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_shmdt) 10 + SYSCALL_NONAME(shmdt, 1, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_shmdt, shmdt, 1, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+19
src/kernel/libsyscall/bsdsyscalls/_shmget.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_shmget 5 + #error "SYS_shmget not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_shmget) 10 + ZERO_EXTEND(1) 11 + SYSCALL_NONAME(shmget, 3, cerror_nocancel) 12 + ret 13 + #else 14 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 15 + __SYSCALL2(_shmget, shmget, 3, cerror_nocancel) 16 + #endif 17 + 18 + #endif 19 +
+18
src/kernel/libsyscall/bsdsyscalls/_shutdown.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_shutdown 5 + #error "SYS_shutdown not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_shutdown) 10 + SYSCALL_NONAME(shutdown, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_shutdown, shutdown, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_sigpending.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 4 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_sigpending 5 + #error "SYS_sigpending not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_sigpending) 10 + SYSCALL_NONAME(sigpending, 1, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_sigpending, sigpending, 1, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_sigprocmask.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_sigprocmask 5 + #error "SYS_sigprocmask not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_sigprocmask) 10 + SYSCALL_NONAME(sigprocmask, 3, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_sigprocmask, sigprocmask, 3, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_socket.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_socket 5 + #error "SYS_socket not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_socket) 10 + SYSCALL_NONAME(socket, 3, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_socket, socket, 3, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_socket_delegate.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 16 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_socket_delegate 5 + #error "SYS_socket_delegate not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_socket_delegate) 10 + SYSCALL_NONAME(socket_delegate, 4, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_socket_delegate, socket_delegate, 4, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+13
src/kernel/libsyscall/bsdsyscalls/_stat.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_stat 5 + #error "SYS_stat not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) 9 + __SYSCALL2(_stat, stat, 2, cerror) 10 + #else 11 + __SYSCALL2(___stat, stat, 2, cerror) 12 + #endif 13 +
+38
src/kernel/libsyscall/bsdsyscalls/_stat64.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_stat64 5 + #error "SYS_stat64 not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_stat64) 10 + SYSCALL_NONAME(stat64, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_stat64, stat64, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 + 19 + #if defined(__i386__) 20 + .globl _stat$INODE64 21 + .set _stat$INODE64, _stat64 22 + #endif 23 + 24 + #if defined(__x86_64__) 25 + .globl _stat$INODE64 26 + .set _stat$INODE64, _stat64 27 + #endif 28 + 29 + #if defined(__ppc__) 30 + .globl _stat$INODE64 31 + .set _stat$INODE64, _stat64 32 + #endif 33 + 34 + #if defined(__arm64__) 35 + .globl _stat 36 + .set _stat, _stat64 37 + #endif 38 +
+13
src/kernel/libsyscall/bsdsyscalls/_statfs.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_statfs 5 + #error "SYS_statfs not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) 9 + __SYSCALL2(_statfs, statfs, 2, cerror_nocancel) 10 + #else 11 + __SYSCALL2(___statfs, statfs, 2, cerror_nocancel) 12 + #endif 13 +
+38
src/kernel/libsyscall/bsdsyscalls/_statfs64.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_statfs64 5 + #error "SYS_statfs64 not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_statfs64) 10 + SYSCALL_NONAME(statfs64, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_statfs64, statfs64, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 + 19 + #if defined(__i386__) 20 + .globl _statfs$INODE64 21 + .set _statfs$INODE64, _statfs64 22 + #endif 23 + 24 + #if defined(__x86_64__) 25 + .globl _statfs$INODE64 26 + .set _statfs$INODE64, _statfs64 27 + #endif 28 + 29 + #if defined(__ppc__) 30 + .globl _statfs$INODE64 31 + .set _statfs$INODE64, _statfs64 32 + #endif 33 + 34 + #if defined(__arm64__) 35 + .globl _statfs 36 + .set _statfs, _statfs64 37 + #endif 38 +
+18
src/kernel/libsyscall/bsdsyscalls/_swapon.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 0 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_swapon 5 + #error "SYS_swapon not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_swapon) 10 + SYSCALL_NONAME(swapon, 0, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_swapon, swapon, 0, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_symlink.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_symlink 5 + #error "SYS_symlink not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_symlink) 10 + SYSCALL_NONAME(symlink, 2, cerror) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_symlink, symlink, 2, cerror) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_symlinkat.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_symlinkat 5 + #error "SYS_symlinkat not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_symlinkat) 10 + SYSCALL_NONAME(symlinkat, 3, cerror) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_symlinkat, symlinkat, 3, cerror) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_sync.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 0 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_sync 5 + #error "SYS_sync not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_sync) 10 + SYSCALL_NONAME(sync, 0, cerror) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_sync, sync, 0, cerror) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_system_override.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 16 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_system_override 5 + #error "SYS_system_override not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_system_override) 10 + SYSCALL_NONAME(system_override, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_system_override, system_override, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_task_inspect_for_pid.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_task_inspect_for_pid 5 + #error "SYS_task_inspect_for_pid not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_task_inspect_for_pid) 10 + SYSCALL_NONAME(task_inspect_for_pid, 3, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_task_inspect_for_pid, task_inspect_for_pid, 3, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_task_read_for_pid.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_task_read_for_pid 5 + #error "SYS_task_read_for_pid not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_task_read_for_pid) 10 + SYSCALL_NONAME(task_read_for_pid, 3, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_task_read_for_pid, task_read_for_pid, 3, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+19
src/kernel/libsyscall/bsdsyscalls/_thread_selfcounts.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_thread_selfcounts 5 + #error "SYS_thread_selfcounts not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_thread_selfcounts) 10 + ZERO_EXTEND(2) 11 + SYSCALL_NONAME(thread_selfcounts, 3, cerror_nocancel) 12 + ret 13 + #else 14 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 15 + __SYSCALL2(_thread_selfcounts, thread_selfcounts, 3, cerror_nocancel) 16 + #endif 17 + 18 + #endif 19 +
+18
src/kernel/libsyscall/bsdsyscalls/_truncate.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_truncate 5 + #error "SYS_truncate not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_truncate) 10 + SYSCALL_NONAME(truncate, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_truncate, truncate, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_umask.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 4 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_umask 5 + #error "SYS_umask not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_umask) 10 + SYSCALL_NONAME(umask, 1, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_umask, umask, 1, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_undelete.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 4 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_undelete 5 + #error "SYS_undelete not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_undelete) 10 + SYSCALL_NONAME(undelete, 1, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_undelete, undelete, 1, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_unmount.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_unmount 5 + #error "SYS_unmount not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_unmount) 10 + SYSCALL_NONAME(unmount, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_unmount, unmount, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_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(__arm64__) 9 + MI_ENTRY_POINT(_usrctl) 10 + SYSCALL_NONAME(usrctl, 1, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_usrctl, usrctl, 1, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_utimes.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 8 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_utimes 5 + #error "SYS_utimes not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_utimes) 10 + SYSCALL_NONAME(utimes, 2, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_utimes, utimes, 2, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_vfs_purge.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 0 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_vfs_purge 5 + #error "SYS_vfs_purge not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_vfs_purge) 10 + SYSCALL_NONAME(vfs_purge, 0, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_vfs_purge, vfs_purge, 0, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+18
src/kernel/libsyscall/bsdsyscalls/_vm_pressure_monitor.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_vm_pressure_monitor 5 + #error "SYS_vm_pressure_monitor not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_vm_pressure_monitor) 10 + SYSCALL_NONAME(vm_pressure_monitor, 3, cerror_nocancel) 11 + ret 12 + #else 13 + #if defined(__i386__) || defined(__x86_64__) || defined(__ppc__) || defined(__arm64__) 14 + __SYSCALL2(_vm_pressure_monitor, vm_pressure_monitor, 3, cerror_nocancel) 15 + #endif 16 + 17 + #endif 18 +
+30
src/kernel/libsyscall/bsdsyscalls/_waitid.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 16 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_waitid 5 + #error "SYS_waitid not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_waitid) 10 + SYSCALL_NONAME(waitid, 4, cerror) 11 + ret 12 + #else 13 + #if defined(__x86_64__) || defined(__arm64__) 14 + __SYSCALL2(_waitid, waitid, 4, cerror) 15 + #else 16 + __SYSCALL2(___waitid, waitid, 4, cerror) 17 + #endif 18 + 19 + #endif 20 + 21 + #if defined(__i386__) 22 + .globl _waitid$UNIX2003 23 + .set _waitid$UNIX2003, ___waitid 24 + #endif 25 + 26 + #if defined(__ppc__) 27 + .globl _waitid$UNIX2003 28 + .set _waitid$UNIX2003, ___waitid 29 + #endif 30 +
+31
src/kernel/libsyscall/bsdsyscalls/_write.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_write 5 + #error "SYS_write not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_write) 10 + ZERO_EXTEND(2) 11 + SYSCALL_NONAME(write, 3, cerror) 12 + ret 13 + #else 14 + #if defined(__x86_64__) || defined(__arm64__) 15 + __SYSCALL2(_write, write, 3, cerror) 16 + #else 17 + __SYSCALL2(___write, write, 3, cerror) 18 + #endif 19 + 20 + #endif 21 + 22 + #if defined(__i386__) 23 + .globl _write$UNIX2003 24 + .set _write$UNIX2003, ___write 25 + #endif 26 + 27 + #if defined(__ppc__) 28 + .globl _write$UNIX2003 29 + .set _write$UNIX2003, ___write 30 + #endif 31 +
+30
src/kernel/libsyscall/bsdsyscalls/_writev.S
··· 1 + #define __SYSCALL_32BIT_ARG_BYTES 12 2 + #include "SYS.h" 3 + 4 + #ifndef SYS_writev 5 + #error "SYS_writev not defined. The header files libsyscall is building against do not match syscalls.master." 6 + #endif 7 + 8 + #if defined(__arm64__) 9 + MI_ENTRY_POINT(_writev) 10 + SYSCALL_NONAME(writev, 3, cerror) 11 + ret 12 + #else 13 + #if defined(__x86_64__) || defined(__arm64__) 14 + __SYSCALL2(_writev, writev, 3, cerror) 15 + #else 16 + __SYSCALL2(___writev, writev, 3, cerror) 17 + #endif 18 + 19 + #endif 20 + 21 + #if defined(__i386__) 22 + .globl _writev$UNIX2003 23 + .set _writev$UNIX2003, ___writev 24 + #endif 25 + 26 + #if defined(__ppc__) 27 + .globl _writev$UNIX2003 28 + .set _writev$UNIX2003, ___writev 29 + #endif 30 +
+149
src/kernel/libsyscall/bsdsyscalls/custom.S
··· 1 + /* 2 + * Copyright (c) 1999-2015 Apple Inc. All rights reserved. 3 + * 4 + * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ 5 + * 6 + * This file contains Original Code and/or Modifications of Original Code 7 + * as defined in and that are subject to the Apple Public Source License 8 + * Version 2.0 (the 'License'). You may not use this file except in 9 + * compliance with the License. The rights granted to you under the License 10 + * may not be used to create, or enable the creation or redistribution of, 11 + * unlawful or unlicensed copies of an Apple operating system, or to 12 + * circumvent, violate, or enable the circumvention or violation of, any 13 + * terms of an Apple operating system software license agreement. 14 + * 15 + * Please obtain a copy of the License at 16 + * http://www.opensource.apple.com/apsl/ and read it before using this file. 17 + * 18 + * The Original Code and all software distributed under the License are 19 + * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 20 + * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, 21 + * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, 22 + * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 23 + * Please see the License for the specific language governing rights and 24 + * limitations under the License. 25 + * 26 + * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ 27 + */ 28 + /* Copyright (c) 1992 NeXT Computer, Inc. All rights reserved. 29 + */ 30 + 31 + #include "SYS.h" 32 + 33 + #if defined(__i386__) 34 + 35 + /* 36 + * i386 needs custom assembly to transform the return from syscalls 37 + * into a proper stack for a function call out to cerror{,_nocancel}. 38 + */ 39 + 40 + LABEL(tramp_cerror) 41 + mov %esp, %edx 42 + andl $0xfffffff0, %esp 43 + subl $16, %esp 44 + movl %edx, 4(%esp) 45 + movl %eax, (%esp) 46 + CALL_EXTERN(_cerror) 47 + movl 4(%esp), %esp 48 + ret 49 + 50 + LABEL(tramp_cerror_nocancel) 51 + mov %esp, %edx 52 + andl $0xfffffff0, %esp 53 + subl $16, %esp 54 + movl %edx, 4(%esp) 55 + movl %eax, (%esp) 56 + CALL_EXTERN(_cerror_nocancel) 57 + movl 4(%esp), %esp 58 + ret 59 + 60 + LABEL(__sysenter_trap) 61 + popl %edx 62 + movl %esp, %ecx 63 + sysenter 64 + 65 + .globl _i386_get_ldt 66 + ALIGN 67 + _i386_get_ldt: 68 + movl $6,%eax 69 + MACHDEP_SYSCALL_TRAP 70 + jnb 2f 71 + jmp tramp_cerror 72 + 2: ret 73 + 74 + 75 + .globl _i386_set_ldt 76 + ALIGN 77 + _i386_set_ldt: 78 + movl $5,%eax 79 + MACHDEP_SYSCALL_TRAP 80 + jnb 2f 81 + jmp tramp_cerror 82 + 2: ret 83 + 84 + ALIGN 85 + .globl __thread_set_tsd_base 86 + __thread_set_tsd_base: 87 + pushl 4(%esp) 88 + pushl $0 89 + movl $3,%eax 90 + MACHDEP_SYSCALL_TRAP 91 + addl $8,%esp 92 + ret 93 + 94 + #elif defined(__x86_64__) 95 + 96 + .globl _i386_get_ldt 97 + ALIGN 98 + _i386_get_ldt: 99 + movl $SYSCALL_CONSTRUCT_MDEP(6), %eax 100 + MACHDEP_SYSCALL_TRAP 101 + jnb 2f 102 + movq %rax, %rdi 103 + jmp _cerror 104 + 2: ret 105 + 106 + 107 + .globl _i386_set_ldt 108 + ALIGN 109 + _i386_set_ldt: 110 + movl $SYSCALL_CONSTRUCT_MDEP(5), %eax 111 + MACHDEP_SYSCALL_TRAP 112 + jnb 2f 113 + movq %rax, %rdi 114 + jmp _cerror 115 + 2: ret 116 + 117 + ALIGN 118 + .globl __thread_set_tsd_base 119 + __thread_set_tsd_base: 120 + movl $0, %esi // 0 as the second argument 121 + movl $ SYSCALL_CONSTRUCT_MDEP(3), %eax // Machine-dependent syscall number 3 122 + MACHDEP_SYSCALL_TRAP 123 + ret 124 + 125 + #elif defined(__arm__) 126 + 127 + .align 2 128 + .globl __thread_set_tsd_base 129 + __thread_set_tsd_base: 130 + mov r3, #2 131 + mov r12, #0x80000000 132 + swi #SWI_SYSCALL 133 + bx lr 134 + 135 + #elif defined(__arm64__) 136 + 137 + .align 2 138 + .globl __thread_set_tsd_base 139 + __thread_set_tsd_base: 140 + mov x3, #2 141 + mov x16, #0x80000000 142 + svc #SWI_SYSCALL 143 + ret 144 + 145 + #else 146 + #error unknown architecture 147 + #endif 148 + 149 + .subsections_via_symbols
+430
src/kernel/libsyscall/bsdsyscalls/stubs.list
··· 1 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_____old_semwait_signal_nocancel.S 2 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_____sigwait_nocancel.S 3 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___abort_with_payload.S 4 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___accept.S 5 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___accept_nocancel.S 6 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___access_extended.S 7 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___aio_suspend_nocancel.S 8 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___bind.S 9 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___bsdthread_create.S 10 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___bsdthread_ctl.S 11 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___bsdthread_register.S 12 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___bsdthread_terminate.S 13 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___chmod.S 14 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___chmod_extended.S 15 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___close_nocancel.S 16 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___coalition.S 17 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___coalition_info.S 18 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___coalition_ledger.S 19 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___connect.S 20 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___connect_nocancel.S 21 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___copyfile.S 22 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___csrctl.S 23 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___delete.S 24 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___disable_threadsignal.S 25 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___exit.S 26 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___fchmod.S 27 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___fchmod_extended.S 28 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___fcntl.S 29 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___fcntl_nocancel.S 30 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___fork.S 31 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___fs_snapshot.S 32 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___fstat64_extended.S 33 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___fstat_extended.S 34 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___fsync_nocancel.S 35 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___getattrlist.S 36 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___getdirentries64.S 37 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___gethostuuid.S 38 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___getlogin.S 39 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___getpeername.S 40 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___getpid.S 41 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___getrlimit.S 42 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___getsgroups.S 43 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___getsockname.S 44 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___gettid.S 45 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___gettimeofday.S 46 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___getwgroups.S 47 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___guarded_open_dprotected_np.S 48 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___guarded_open_np.S 49 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___identitysvc.S 50 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___initgroups.S 51 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___ioctl.S 52 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___iopolicysys.S 53 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___kdebug_trace.S 54 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___kdebug_trace64.S 55 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___kdebug_trace_string.S 56 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___kdebug_typefilter.S 57 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___kill.S 58 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___kqueue_workloop_ctl.S 59 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___lchown.S 60 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___listen.S 61 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___log_data.S 62 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___lseek.S 63 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___lstat64_extended.S 64 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___lstat_extended.S 65 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___mac_execve.S 66 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___mac_get_fd.S 67 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___mac_get_file.S 68 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___mac_get_link.S 69 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___mac_get_mount.S 70 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___mac_get_pid.S 71 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___mac_get_proc.S 72 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___mac_getfsstat.S 73 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___mac_mount.S 74 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___mac_set_fd.S 75 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___mac_set_file.S 76 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___mac_set_link.S 77 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___mac_set_proc.S 78 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___mac_syscall.S 79 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___mach_bridge_remote_time.S 80 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___mach_eventlink_signal.S 81 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___mach_eventlink_signal_wait_until.S 82 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___mach_eventlink_wait_until.S 83 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___memorystatus_available_memory.S 84 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___microstackshot.S 85 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___mkdir_extended.S 86 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___mkfifo_extended.S 87 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___mmap.S 88 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___mprotect.S 89 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___msgctl.S 90 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___msgrcv_nocancel.S 91 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___msgsnd_nocancel.S 92 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___msgsys.S 93 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___msync.S 94 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___msync_nocancel.S 95 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___munmap.S 96 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___old_semwait_signal.S 97 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___open.S 98 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___open_dprotected_np.S 99 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___open_extended.S 100 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___open_nocancel.S 101 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___openat.S 102 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___openat_nocancel.S 103 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___persona.S 104 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___pipe.S 105 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___poll_nocancel.S 106 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___posix_spawn.S 107 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___pread_nocancel.S 108 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___preadv_nocancel.S 109 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___proc_info.S 110 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___proc_info_extended_id.S 111 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___process_policy.S 112 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___pselect.S 113 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___pselect_nocancel.S 114 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___psynch_cvbroad.S 115 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___psynch_cvclrprepost.S 116 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___psynch_cvsignal.S 117 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___psynch_cvwait.S 118 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___psynch_mutexdrop.S 119 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___psynch_mutexwait.S 120 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___psynch_rw_downgrade.S 121 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___psynch_rw_longrdlock.S 122 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___psynch_rw_rdlock.S 123 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___psynch_rw_unlock.S 124 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___psynch_rw_unlock2.S 125 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___psynch_rw_upgrade.S 126 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___psynch_rw_wrlock.S 127 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___psynch_rw_yieldwrlock.S 128 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___pthread_canceled.S 129 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___pthread_chdir.S 130 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___pthread_fchdir.S 131 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___pthread_kill.S 132 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___pthread_markcancel.S 133 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___pthread_sigmask.S 134 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___ptrace.S 135 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___pwrite_nocancel.S 136 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___pwritev_nocancel.S 137 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___read_nocancel.S 138 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___readv_nocancel.S 139 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___reboot.S 140 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___recvfrom.S 141 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___recvfrom_nocancel.S 142 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___recvmsg.S 143 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___recvmsg_nocancel.S 144 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___rename.S 145 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___renameat.S 146 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___renameatx_np.S 147 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___rmdir.S 148 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___select.S 149 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___select_nocancel.S 150 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___sem_open.S 151 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___sem_wait_nocancel.S 152 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___semctl.S 153 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___semsys.S 154 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___semwait_signal.S 155 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___semwait_signal_nocancel.S 156 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___sendmsg.S 157 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___sendmsg_nocancel.S 158 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___sendto.S 159 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___sendto_nocancel.S 160 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___setattrlist.S 161 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___setlogin.S 162 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___setpriority.S 163 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___setregid.S 164 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___setreuid.S 165 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___setrlimit.S 166 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___setsgroups.S 167 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___settid.S 168 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___settid_with_pid.S 169 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___settimeofday.S 170 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___setwgroups.S 171 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___sfi_ctl.S 172 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___sfi_pidctl.S 173 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___shared_region_check_np.S 174 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___shared_region_map_and_slide_2_np.S 175 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___shared_region_map_and_slide_np.S 176 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___shm_open.S 177 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___shmctl.S 178 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___shmsys.S 179 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___sigaction.S 180 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___sigaltstack.S 181 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___sigreturn.S 182 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___sigsuspend.S 183 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___sigsuspend_nocancel.S 184 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___sigwait.S 185 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___socketpair.S 186 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___stack_snapshot_with_config.S 187 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___stat64_extended.S 188 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___stat_extended.S 189 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___syscall.S 190 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___sysctl.S 191 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___sysctlbyname.S 192 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___telemetry.S 193 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___terminate_with_payload.S 194 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___thread_selfid.S 195 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___thread_selfusage.S 196 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___ulock_wait.S 197 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___ulock_wait2.S 198 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___ulock_wake.S 199 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___umask_extended.S 200 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___unlink.S 201 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___unlinkat.S 202 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___vfork.S 203 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___wait4.S 204 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___wait4_nocancel.S 205 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___waitid_nocancel.S 206 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___work_interval_ctl.S 207 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___workq_kernreturn.S 208 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___workq_open.S 209 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___write_nocancel.S 210 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/___writev_nocancel.S 211 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_access.S 212 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_acct.S 213 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_adjtime.S 214 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_aio_cancel.S 215 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_aio_error.S 216 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_aio_fsync.S 217 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_aio_read.S 218 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_aio_return.S 219 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_aio_suspend.S 220 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_aio_write.S 221 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_audit.S 222 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_audit_session_join.S 223 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_audit_session_port.S 224 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_audit_session_self.S 225 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_auditctl.S 226 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_auditon.S 227 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_change_fdguard_np.S 228 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_chdir.S 229 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_chflags.S 230 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_chown.S 231 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_chroot.S 232 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_clonefileat.S 233 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_close.S 234 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_connectx.S 235 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_csops.S 236 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_csops_audittoken.S 237 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_disconnectx.S 238 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_dup.S 239 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_dup2.S 240 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_exchangedata.S 241 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_execve.S 242 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_faccessat.S 243 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_fchdir.S 244 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_fchflags.S 245 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_fchmodat.S 246 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_fchown.S 247 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_fchownat.S 248 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_fclonefileat.S 249 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_fdatasync.S 250 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_ffsctl.S 251 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_fgetattrlist.S 252 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_fgetxattr.S 253 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_fhopen.S 254 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_fileport_makefd.S 255 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_fileport_makeport.S 256 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_flistxattr.S 257 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_flock.S 258 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_fmount.S 259 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_fpathconf.S 260 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_fremovexattr.S 261 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_fsctl.S 262 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_fsetattrlist.S 263 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_fsetxattr.S 264 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_fsgetpath.S 265 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_fsgetpath_ext.S 266 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_fstat.S 267 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_fstat64.S 268 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_fstatat.S 269 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_fstatat64.S 270 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_fstatfs.S 271 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_fstatfs64.S 272 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_fsync.S 273 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_ftruncate.S 274 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_futimes.S 275 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_getattrlistat.S 276 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_getattrlistbulk.S 277 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_getaudit_addr.S 278 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_getauid.S 279 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_getdirentries.S 280 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_getdirentriesattr.S 281 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_getdtablesize.S 282 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_getegid.S 283 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_getentropy.S 284 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_geteuid.S 285 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_getfh.S 286 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_getfsstat.S 287 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_getfsstat64.S 288 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_getgid.S 289 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_getgroups.S 290 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_getitimer.S 291 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_getpgid.S 292 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_getpgrp.S 293 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_getppid.S 294 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_getpriority.S 295 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_getrusage.S 296 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_getsid.S 297 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_getsockopt.S 298 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_getuid.S 299 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_getxattr.S 300 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_grab_pgo_data.S 301 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_guarded_close_np.S 302 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_guarded_kqueue_np.S 303 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_guarded_pwrite_np.S 304 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_guarded_write_np.S 305 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_guarded_writev_np.S 306 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_issetugid.S 307 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_kas_info.S 308 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_kevent.S 309 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_kevent64.S 310 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_kevent_id.S 311 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_kevent_qos.S 312 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_kqueue.S 313 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_ledger.S 314 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_link.S 315 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_linkat.S 316 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_lio_listio.S 317 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_listxattr.S 318 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_lstat.S 319 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_lstat64.S 320 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_madvise.S 321 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_memorystatus_control.S 322 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_memorystatus_get_level.S 323 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_mincore.S 324 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_minherit.S 325 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_mkdir.S 326 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_mkdirat.S 327 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_mkfifo.S 328 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_mknod.S 329 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_mlock.S 330 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_mlockall.S 331 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_mount.S 332 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_mremap_encrypted.S 333 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_msgget.S 334 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_msgrcv.S 335 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_msgsnd.S 336 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_munlock.S 337 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_munlockall.S 338 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_necp_client_action.S 339 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_necp_match_policy.S 340 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_necp_open.S 341 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_necp_session_action.S 342 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_necp_session_open.S 343 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_net_qos_guideline.S 344 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_netagent_trigger.S 345 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_nfsclnt.S 346 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_nfssvc.S 347 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_ntp_adjtime.S 348 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_ntp_gettime.S 349 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_openbyid_np.S 350 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_os_fault_with_payload.S 351 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_pathconf.S 352 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_peeloff.S 353 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_pid_hibernate.S 354 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_pid_resume.S 355 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_pid_shutdown_sockets.S 356 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_pid_suspend.S 357 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_pivot_root.S 358 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_poll.S 359 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_pread.S 360 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_preadv.S 361 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_proc_rlimit_control.S 362 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_proc_trace_log.S 363 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_proc_uuid_policy.S 364 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_pwrite.S 365 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_pwritev.S 366 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_quotactl.S 367 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_read.S 368 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_readlink.S 369 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_readlinkat.S 370 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_readv.S 371 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_recvmsg_x.S 372 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_removexattr.S 373 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_revoke.S 374 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_searchfs.S 375 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_sem_close.S 376 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_sem_post.S 377 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_sem_trywait.S 378 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_sem_unlink.S 379 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_sem_wait.S 380 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_semget.S 381 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_semop.S 382 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_sendfile.S 383 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_sendmsg_x.S 384 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_setattrlistat.S 385 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_setaudit_addr.S 386 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_setauid.S 387 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_setegid.S 388 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_seteuid.S 389 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_setgid.S 390 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_setgroups.S 391 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_setitimer.S 392 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_setpgid.S 393 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_setprivexec.S 394 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_setsid.S 395 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_setsockopt.S 396 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_setuid.S 397 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_setxattr.S 398 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_shm_unlink.S 399 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_shmat.S 400 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_shmdt.S 401 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_shmget.S 402 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_shutdown.S 403 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_sigpending.S 404 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_sigprocmask.S 405 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_socket.S 406 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_socket_delegate.S 407 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_stat.S 408 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_stat64.S 409 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_statfs.S 410 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_statfs64.S 411 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_swapon.S 412 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_symlink.S 413 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_symlinkat.S 414 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_sync.S 415 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_system_override.S 416 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_task_inspect_for_pid.S 417 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_task_read_for_pid.S 418 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_thread_selfcounts.S 419 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_truncate.S 420 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_umask.S 421 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_undelete.S 422 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_unmount.S 423 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_usrctl.S 424 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_utimes.S 425 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_vfs_purge.S 426 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_vm_pressure_monitor.S 427 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_waitid.S 428 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_write.S 429 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/_writev.S 430 + /home/thomasa/Documents/CodingProjects/Repository/GitHub/darling/src/kernel/libsyscall/bsdsyscalls/custom.S