]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/libc/sys/Makefile.inc
MFV r353637: 10844 Serialize ZTHR operations to eliminate races
[FreeBSD/FreeBSD.git] / lib / libc / sys / Makefile.inc
1 #       @(#)Makefile.inc        8.3 (Berkeley) 10/24/94
2 # $FreeBSD$
3
4 # sys sources
5 .PATH: ${LIBC_SRCTOP}/${LIBC_ARCH}/sys ${LIBC_SRCTOP}/sys
6
7 # Include the generated makefile containing the *complete* list
8 # of syscall names in MIASM.
9 .include "${SRCTOP}/sys/sys/syscall.mk"
10
11 # Include machine dependent definitions.
12 #
13 # MDASM names override the default syscall names in MIASM.
14 # NOASM will prevent the default syscall code from being generated.
15 # PSEUDO generates _<sys>() and __sys_<sys>() symbols, but not <sys>().
16 #
17 # While historically machine dependent, all architectures have the following
18 # declarations in common:
19 #
20 NOASM=  exit.o \
21         getlogin.o \
22         sstk.o \
23         yield.o
24 PSEUDO= _exit.o \
25         _getlogin.o
26 .sinclude "${LIBC_SRCTOP}/${LIBC_ARCH}/sys/Makefile.inc"
27
28 SRCS+= clock_gettime.c gettimeofday.c __vdso_gettimeofday.c
29 NOASM+=  clock_gettime.o gettimeofday.o
30 PSEUDO+= _clock_gettime.o _gettimeofday.o
31
32 # Sources common to both syscall interfaces:
33 SRCS+=  \
34         __error.c \
35         interposing_table.c
36
37 SRCS+= getdents.c lstat.c mknod.c stat.c
38
39 SRCS+= fstat.c fstatat.c fstatfs.c getfsstat.c statfs.c
40 NOASM+= fstat.o fstatat.o fstatfs.o getfsstat.o statfs.o
41 PSEUDO+= _fstat.o _fstatat.o _fstatfs.o _getfsstat.o _statfs.o
42
43 SRCS+= getdirentries.c
44 NOASM+= getdirentries.o
45 PSEUDO+= _getdirentries.o
46
47 SRCS+= brk.c
48 SRCS+= pipe.c
49 SRCS+= shm_open.c
50 SRCS+= vadvise.c
51
52 SRCS+=  compat-stub.c
53
54 INTERPOSED = \
55         accept \
56         accept4 \
57         aio_suspend \
58         clock_nanosleep \
59         close \
60         connect \
61         fcntl \
62         fdatasync \
63         fsync \
64         fork \
65         kevent \
66         msync \
67         nanosleep \
68         open \
69         openat \
70         poll \
71         ppoll \
72         pselect \
73         ptrace \
74         read \
75         readv \
76         recvfrom \
77         recvmsg \
78         select \
79         sendmsg \
80         sendto \
81         setcontext \
82         sigprocmask \
83         sigsuspend \
84         sigtimedwait \
85         sigwait \
86         sigwaitinfo \
87         swapcontext \
88         wait4 \
89         wait6 \
90         write \
91         writev
92
93 .if ${MACHINE_CPUARCH} == "sparc64"
94 SRCS+=  sigaction.c
95 NOASM+= sigaction.o
96 .else
97 INTERPOSED+= sigaction
98 .endif
99
100 SRCS+=  ${INTERPOSED:S/$/.c/}
101 NOASM+= ${INTERPOSED:S/$/.o/}
102 PSEUDO+=        ${INTERPOSED:C/^.*$/_&.o/}
103
104 # Add machine dependent asm sources:
105 SRCS+=${MDASM}
106
107 # Look though the complete list of syscalls (MIASM) for names that are
108 # not defined with machine dependent implementations (MDASM) and are
109 # not declared for no generation of default code (NOASM).  Add each
110 # syscall that satisfies these conditions to the ASM list.
111 .for _asm in ${MIASM}
112 .if (${MDASM:R:M${_asm:R}} == "")
113 .if (${NOASM:R:M${_asm:R}} == "")
114 ASM+=$(_asm)
115 .endif
116 .endif
117 .endfor
118
119 SASM=   ${ASM:S/.o/.S/}
120
121 SPSEUDO= ${PSEUDO:S/.o/.S/}
122
123 SRCS+=  ${SASM} ${SPSEUDO}
124
125 SYM_MAPS+=      ${LIBC_SRCTOP}/sys/Symbol.map
126
127 # Generated files
128 CLEANFILES+=    ${SASM} ${SPSEUDO}
129
130 .if ${MACHINE_CPUARCH} == "amd64" || ${MACHINE_CPUARCH} == "i386" || \
131     ${MACHINE_CPUARCH} == "powerpc" || ${MACHINE_ARCH:Marmv[67]*}
132 NOTE_GNU_STACK='\t.section .note.GNU-stack,"",%%progbits\n'
133 .else
134 NOTE_GNU_STACK=''
135 .endif
136
137 ${SASM}:
138         printf '/* %sgenerated by libc/sys/Makefile.inc */\n' @ > ${.TARGET}
139         printf '#include "compat.h"\n' >> ${.TARGET}
140         printf '#include "SYS.h"\nRSYSCALL(${.PREFIX})\n' >> ${.TARGET}
141         printf  ${NOTE_GNU_STACK} >>${.TARGET}
142
143 ${SPSEUDO}:
144         printf '/* %sgenerated by libc/sys/Makefile.inc */\n' @ > ${.TARGET}
145         printf '#include "compat.h"\n' >> ${.TARGET}
146         printf '#include "SYS.h"\nPSEUDO(${.PREFIX:S/_//})\n' \
147             >> ${.TARGET}
148         printf ${NOTE_GNU_STACK} >>${.TARGET}
149
150 MAN+=   abort2.2 \
151         accept.2 \
152         access.2 \
153         acct.2 \
154         adjtime.2 \
155         aio_cancel.2 \
156         aio_error.2 \
157         aio_fsync.2 \
158         aio_mlock.2 \
159         aio_read.2 \
160         aio_return.2 \
161         aio_suspend.2 \
162         aio_waitcomplete.2 \
163         aio_write.2 \
164         bind.2 \
165         bindat.2 \
166         brk.2 \
167         cap_enter.2 \
168         cap_fcntls_limit.2 \
169         cap_ioctls_limit.2 \
170         cap_rights_limit.2 \
171         chdir.2 \
172         chflags.2 \
173         chmod.2 \
174         chown.2 \
175         chroot.2 \
176         clock_gettime.2 \
177         close.2 \
178         closefrom.2 \
179         connect.2 \
180         connectat.2 \
181         copy_file_range.2 \
182         cpuset.2 \
183         cpuset_getaffinity.2 \
184         cpuset_getdomain.2 \
185         dup.2 \
186         execve.2 \
187         _exit.2 \
188         extattr_get_file.2 \
189         fcntl.2 \
190         ffclock.2 \
191         fhlink.2 \
192         fhopen.2 \
193         fhreadlink.2 \
194         flock.2 \
195         fork.2 \
196         fsync.2 \
197         getdirentries.2 \
198         getdtablesize.2 \
199         getfh.2 \
200         getfsstat.2 \
201         getgid.2 \
202         getgroups.2 \
203         getitimer.2 \
204         getlogin.2 \
205         getloginclass.2 \
206         getpeername.2 \
207         getpgrp.2 \
208         getpid.2 \
209         getpriority.2 \
210         getrandom.2 \
211         getrlimit.2 \
212         getrusage.2 \
213         getsid.2 \
214         getsockname.2 \
215         getsockopt.2 \
216         gettimeofday.2 \
217         getuid.2 \
218         intro.2 \
219         ioctl.2 \
220         issetugid.2 \
221         jail.2 \
222         kenv.2 \
223         kill.2 \
224         kldfind.2 \
225         kldfirstmod.2 \
226         kldload.2 \
227         kldnext.2 \
228         kldstat.2 \
229         kldsym.2 \
230         kldunload.2 \
231         kqueue.2 \
232         ktrace.2 \
233         link.2 \
234         lio_listio.2 \
235         listen.2 \
236         lseek.2 \
237         madvise.2 \
238         mincore.2 \
239         minherit.2 \
240         mkdir.2 \
241         mkfifo.2 \
242         mknod.2 \
243         mlock.2 \
244         mlockall.2 \
245         mmap.2 \
246         modfind.2 \
247         modnext.2 \
248         modstat.2 \
249         mount.2 \
250         mprotect.2 \
251         mq_close.2 \
252         mq_getattr.2 \
253         mq_notify.2 \
254         mq_open.2 \
255         mq_receive.2 \
256         mq_send.2 \
257         mq_setattr.2 \
258         msgctl.2 \
259         msgget.2 \
260         msgrcv.2 \
261         msgsnd.2 \
262         msync.2 \
263         munmap.2 \
264         nanosleep.2 \
265         nfssvc.2 \
266         ntp_adjtime.2 \
267         open.2 \
268         pathconf.2 \
269         pdfork.2 \
270         pipe.2 \
271         poll.2 \
272         posix_fadvise.2 \
273         posix_fallocate.2 \
274         posix_openpt.2 \
275         procctl.2 \
276         profil.2 \
277         pselect.2 \
278         ptrace.2 \
279         quotactl.2 \
280         rctl_add_rule.2 \
281         read.2 \
282         readlink.2 \
283         reboot.2 \
284         recv.2 \
285         rename.2 \
286         revoke.2 \
287         rfork.2 \
288         rmdir.2 \
289         rtprio.2
290 .if !defined(NO_P1003_1B)
291 MAN+=   sched_get_priority_max.2 \
292         sched_setparam.2 \
293         sched_setscheduler.2 \
294         sched_yield.2
295 .endif
296 MAN+=   sctp_generic_recvmsg.2 \
297         sctp_generic_sendmsg.2 \
298         sctp_peeloff.2 \
299         select.2 \
300         semctl.2 \
301         semget.2 \
302         semop.2 \
303         send.2 \
304         setfib.2 \
305         sendfile.2 \
306         setgroups.2 \
307         setpgid.2 \
308         setregid.2 \
309         setresuid.2 \
310         setreuid.2 \
311         setsid.2 \
312         setuid.2 \
313         shmat.2 \
314         shmctl.2 \
315         shmget.2 \
316         shm_open.2 \
317         shutdown.2 \
318         sigaction.2 \
319         sigaltstack.2 \
320         sigpending.2 \
321         sigprocmask.2 \
322         sigqueue.2 \
323         sigreturn.2 \
324         sigstack.2 \
325         sigsuspend.2 \
326         sigwait.2 \
327         sigwaitinfo.2 \
328         socket.2 \
329         socketpair.2 \
330         stat.2 \
331         statfs.2 \
332         swapon.2 \
333         symlink.2 \
334         sync.2 \
335         sysarch.2 \
336         syscall.2 \
337         thr_exit.2 \
338         thr_kill.2 \
339         thr_new.2 \
340         thr_self.2 \
341         thr_set_name.2 \
342         thr_suspend.2 \
343         thr_wake.2 \
344         timer_create.2 \
345         timer_delete.2 \
346         timer_settime.2 \
347         truncate.2 \
348         umask.2 \
349         undelete.2 \
350         unlink.2 \
351         utimensat.2 \
352         utimes.2 \
353         utrace.2 \
354         uuidgen.2 \
355         vfork.2 \
356         wait.2 \
357         write.2 \
358         _umtx_op.2
359
360 MLINKS+=accept.2 accept4.2
361 MLINKS+=access.2 eaccess.2 \
362         access.2 faccessat.2
363 MLINKS+=brk.2 sbrk.2
364 MLINKS+=cap_enter.2 cap_getmode.2
365 MLINKS+=cap_fcntls_limit.2 cap_fcntls_get.2
366 MLINKS+=cap_ioctls_limit.2 cap_ioctls_get.2
367 MLINKS+=chdir.2 fchdir.2
368 MLINKS+=chflags.2 chflagsat.2 \
369         chflags.2 fchflags.2 \
370         chflags.2 lchflags.2
371 MLINKS+=chmod.2 fchmod.2 \
372         chmod.2 fchmodat.2 \
373         chmod.2 lchmod.2
374 MLINKS+=chown.2 fchown.2 \
375         chown.2 fchownat.2 \
376         chown.2 lchown.2
377 MLINKS+=clock_gettime.2 clock_getres.2 \
378         clock_gettime.2 clock_settime.2
379 MLINKS+=nanosleep.2 clock_nanosleep.2
380 MLINKS+=cpuset.2 cpuset_getid.2 \
381         cpuset.2 cpuset_setid.2
382 MLINKS+=cpuset_getaffinity.2 cpuset_setaffinity.2
383 MLINKS+=cpuset_getdomain.2 cpuset_setdomain.2
384 MLINKS+=dup.2 dup2.2
385 MLINKS+=execve.2 fexecve.2
386 MLINKS+=extattr_get_file.2 extattr.2 \
387         extattr_get_file.2 extattr_delete_fd.2 \
388         extattr_get_file.2 extattr_delete_file.2 \
389         extattr_get_file.2 extattr_delete_link.2 \
390         extattr_get_file.2 extattr_get_fd.2 \
391         extattr_get_file.2 extattr_get_link.2 \
392         extattr_get_file.2 extattr_list_fd.2 \
393         extattr_get_file.2 extattr_list_file.2 \
394         extattr_get_file.2 extattr_list_link.2 \
395         extattr_get_file.2 extattr_set_fd.2 \
396         extattr_get_file.2 extattr_set_file.2 \
397         extattr_get_file.2 extattr_set_link.2
398 MLINKS+=ffclock.2 ffclock_getcounter.2 \
399         ffclock.2 ffclock_getestimate.2 \
400         ffclock.2 ffclock_setestimate.2
401 MLINKS+=fhlink.2 fhlinkat.2
402 MLINKS+=fhopen.2 fhstat.2 fhopen.2 fhstatfs.2
403 MLINKS+=fsync.2 fdatasync.2
404 MLINKS+=getdirentries.2 getdents.2
405 MLINKS+=getfh.2 lgetfh.2 \
406         getfh.2 getfhat.2
407 MLINKS+=getgid.2 getegid.2
408 MLINKS+=getitimer.2 setitimer.2
409 MLINKS+=getlogin.2 getlogin_r.3
410 MLINKS+=getlogin.2 setlogin.2
411 MLINKS+=getloginclass.2 setloginclass.2
412 MLINKS+=getpgrp.2 getpgid.2
413 MLINKS+=getpid.2 getppid.2
414 MLINKS+=getpriority.2 setpriority.2
415 MLINKS+=getrlimit.2 setrlimit.2
416 MLINKS+=getsockopt.2 setsockopt.2
417 MLINKS+=gettimeofday.2 settimeofday.2
418 MLINKS+=getuid.2 geteuid.2
419 MLINKS+=intro.2 errno.2
420 MLINKS+=jail.2 jail_attach.2 \
421         jail.2 jail_get.2 \
422         jail.2 jail_remove.2 \
423         jail.2 jail_set.2
424 MLINKS+=kldunload.2 kldunloadf.2
425 MLINKS+=kqueue.2 kevent.2 \
426         kqueue.2 EV_SET.3
427 MLINKS+=link.2 linkat.2
428 MLINKS+=madvise.2 posix_madvise.2
429 MLINKS+=mkdir.2 mkdirat.2
430 MLINKS+=mkfifo.2 mkfifoat.2
431 MLINKS+=mknod.2 mknodat.2
432 MLINKS+=mlock.2 munlock.2
433 MLINKS+=mlockall.2 munlockall.2
434 MLINKS+=modnext.2 modfnext.2
435 MLINKS+=mount.2 nmount.2 \
436         mount.2 unmount.2
437 MLINKS+=mq_receive.2 mq_timedreceive.2
438 MLINKS+=mq_send.2 mq_timedsend.2
439 MLINKS+=ntp_adjtime.2 ntp_gettime.2
440 MLINKS+=open.2 openat.2
441 MLINKS+=pathconf.2 fpathconf.2
442 MLINKS+=pathconf.2 lpathconf.2
443 MLINKS+=pdfork.2 pdgetpid.2\
444         pdfork.2 pdkill.2
445 MLINKS+=pipe.2 pipe2.2
446 MLINKS+=poll.2 ppoll.2
447 MLINKS+=rctl_add_rule.2 rctl_get_limits.2 \
448         rctl_add_rule.2 rctl_get_racct.2 \
449         rctl_add_rule.2 rctl_get_rules.2 \
450         rctl_add_rule.2 rctl_remove_rule.2
451 MLINKS+=read.2 pread.2 \
452         read.2 preadv.2 \
453         read.2 readv.2
454 MLINKS+=readlink.2 readlinkat.2
455 MLINKS+=recv.2 recvfrom.2 \
456         recv.2 recvmsg.2
457 MLINKS+=rename.2 renameat.2
458 MLINKS+=rtprio.2 rtprio_thread.2
459 .if !defined(NO_P1003_1B)
460 MLINKS+=sched_get_priority_max.2 sched_get_priority_min.2 \
461         sched_get_priority_max.2 sched_rr_get_interval.2
462 MLINKS+=sched_setparam.2 sched_getparam.2
463 MLINKS+=sched_setscheduler.2 sched_getscheduler.2
464 .endif
465 MLINKS+=select.2 FD_CLR.3 \
466         select.2 FD_ISSET.3 \
467         select.2 FD_SET.3 \
468         select.2 FD_ZERO.3
469 MLINKS+=send.2 sendmsg.2 \
470         send.2 sendto.2
471 MLINKS+=setpgid.2 setpgrp.2
472 MLINKS+=setresuid.2 getresgid.2 \
473         setresuid.2 getresuid.2 \
474         setresuid.2 setresgid.2
475 MLINKS+=setuid.2 setegid.2 \
476         setuid.2 seteuid.2 \
477         setuid.2 setgid.2
478 MLINKS+=shmat.2 shmdt.2
479 MLINKS+=shm_open.2 memfd_create.3 \
480         shm_open.2 shm_unlink.2 \
481         shm_open.2 shm_rename.2
482 MLINKS+=sigwaitinfo.2 sigtimedwait.2
483 MLINKS+=stat.2 fstat.2 \
484         stat.2 fstatat.2 \
485         stat.2 lstat.2
486 MLINKS+=statfs.2 fstatfs.2
487 MLINKS+=swapon.2 swapoff.2
488 MLINKS+=symlink.2 symlinkat.2
489 MLINKS+=syscall.2 __syscall.2
490 MLINKS+=timer_settime.2 timer_getoverrun.2 \
491         timer_settime.2 timer_gettime.2
492 MLINKS+=thr_kill.2 thr_kill2.2
493 MLINKS+=truncate.2 ftruncate.2
494 MLINKS+=unlink.2 unlinkat.2
495 MLINKS+=unlink.2 funlinkat.2
496 MLINKS+=utimensat.2 futimens.2
497 MLINKS+=utimes.2 futimes.2 \
498         utimes.2 futimesat.2 \
499         utimes.2 lutimes.2
500 MLINKS+=wait.2 wait3.2 \
501         wait.2 wait4.2 \
502         wait.2 waitpid.2 \
503         wait.2 waitid.2 \
504         wait.2 wait6.2
505 MLINKS+=write.2 pwrite.2 \
506         write.2 pwritev.2 \
507         write.2 writev.2