summaryrefslogtreecommitdiff
path: root/usr/src/lib/c_synonyms/syn_common
blob: b8f4058348671129be6c72bc650d27d5cb5ed41a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
#
# CDDL HEADER START
#
# The contents of this file are subject to the terms of the
# Common Development and Distribution License (the "License").
# You may not use this file except in compliance with the License.
#
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
# or http://www.opensolaris.org/os/licensing.
# See the License for the specific language governing permissions
# and limitations under the License.
#
# When distributing Covered Code, include this CDDL HEADER in each
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
# If applicable, add the following below this CDDL HEADER, with the
# fields enclosed by brackets "[]" replaced with your own identifying
# information: Portions Copyright [yyyy] [name of copyright owner]
#
# CDDL HEADER END
#
#
# Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
# Use is subject to license terms.
#
# ident	"%Z%%M%	%I%	%E% SMI"
#

#
# This is the list of functions in libc that historically have
# had synonym names with a leading underscore, as in:
#	ascftime()
#	_ascftime()
# Most of these synonyms have been removed from libc and the
# only way of calling them now is to preload c_synonyms.so.1
#
# This is the list that is common among all of the supported ISAs.
# See the individual 'syn_isa' files in each ISA subdirectory for
# the supplemental lists of names specific to each individual ISA.
#

_cladm
_lwp_cond_broadcast
_lwp_cond_reltimedwait
_lwp_cond_signal
_lwp_cond_timedwait
_lwp_cond_wait
_lwp_continue
_lwp_info
_lwp_kill
_lwp_mutex_lock
_lwp_mutex_trylock
_lwp_mutex_unlock
_lwp_self
_lwp_sema_init
_lwp_sema_post
_lwp_sema_trywait
_lwp_sema_wait
_lwp_suspend
a64l
access
acct
acctctl
acl
addseverity
adjtime
alarm
alphasort
ascftime
asctime_r
atoll
atomic_add_16
atomic_add_16_nv
atomic_add_32
atomic_add_32_nv
atomic_add_64
atomic_add_64_nv
atomic_add_8
atomic_add_8_nv
atomic_add_char
atomic_add_char_nv
atomic_add_int
atomic_add_int_nv
atomic_add_long
atomic_add_long_nv
atomic_add_ptr
atomic_add_ptr_nv
atomic_add_short
atomic_add_short_nv
atomic_and_16
atomic_and_16_nv
atomic_and_32
atomic_and_32_nv
atomic_and_64
atomic_and_64_nv
atomic_and_8
atomic_and_8_nv
atomic_and_uchar
atomic_and_uchar_nv
atomic_and_uint
atomic_and_uint_nv
atomic_and_ulong
atomic_and_ulong_nv
atomic_and_ushort
atomic_and_ushort_nv
atomic_cas_16
atomic_cas_32
atomic_cas_64
atomic_cas_8
atomic_cas_ptr
atomic_cas_uchar
atomic_cas_uint
atomic_cas_ulong
atomic_cas_ushort
atomic_clear_long_excl
atomic_dec_16
atomic_dec_16_nv
atomic_dec_32
atomic_dec_32_nv
atomic_dec_64
atomic_dec_64_nv
atomic_dec_8
atomic_dec_8_nv
atomic_dec_uchar
atomic_dec_uchar_nv
atomic_dec_uint
atomic_dec_uint_nv
atomic_dec_ulong
atomic_dec_ulong_nv
atomic_dec_ushort
atomic_dec_ushort_nv
atomic_inc_16
atomic_inc_16_nv
atomic_inc_32
atomic_inc_32_nv
atomic_inc_64
atomic_inc_64_nv
atomic_inc_8
atomic_inc_8_nv
atomic_inc_uchar
atomic_inc_uchar_nv
atomic_inc_uint
atomic_inc_uint_nv
atomic_inc_ulong
atomic_inc_ulong_nv
atomic_inc_ushort
atomic_inc_ushort_nv
atomic_or_16
atomic_or_16_nv
atomic_or_32
atomic_or_32_nv
atomic_or_64
atomic_or_64_nv
atomic_or_8
atomic_or_8_nv
atomic_or_uchar
atomic_or_uchar_nv
atomic_or_uint
atomic_or_uint_nv
atomic_or_ulong
atomic_or_ulong_nv
atomic_or_ushort
atomic_or_ushort_nv
atomic_set_long_excl
atomic_swap_16
atomic_swap_32
atomic_swap_64
atomic_swap_8
atomic_swap_ptr
atomic_swap_uchar
atomic_swap_uint
atomic_swap_ulong
atomic_swap_ushort
attropen
brk
catclose
catgets
catopen
cfgetispeed
cfgetospeed
cfsetispeed
cfsetospeed
cftime
chdir
chmod
chown
chroot
clock_getres
clock_gettime
clock_nanosleep
clock_settime
close
closedir
closefrom
closelog
cond_broadcast
cond_destroy
cond_init
cond_reltimedwait
cond_signal
cond_timedwait
cond_wait
core_get_default_content
core_get_default_path
core_get_global_content
core_get_global_path
core_get_options
core_get_process_content
core_get_process_path
core_set_default_content
core_set_default_path
core_set_global_content
core_set_global_path
core_set_options
core_set_process_content
core_set_process_path
creat
crypt
ctermid
ctermid_r
ctime_r
cuserid
decimal_to_double
decimal_to_extended
decimal_to_quadruple
decimal_to_single
defcntl
defopen
defread
dgettext
dirfd
dladdr
dladdr1
dldump
dlclose
dlerror
dlinfo
dlopen
dlmopen
dlsym
door_bind
door_call
door_create
door_cred
door_getparam
door_info
door_return
door_revoke
door_server_create
door_setparam
door_ucred
door_unbind
double_to_decimal
drand48
dup
dup2
econvert
ecvt
encrypt
endgrent
endpwent
endspent
endutent
endutxent
erand48
err
errx
execl
execle
execlp
execv
execve
execvp
exportfs
extended_to_decimal
facl
fattach
fchdir
fchmod
fchown
fchownat
fchroot
fcntl
fconvert
fcvt
fdatasync
fdetach
fdopen
fdopendir
fdwalk
ffs
fgetgrent
fgetgrent_r
fgetpwent
fgetpwent_r
fgetspent
fgetspent_r
file_to_decimal
fileno
finite
flockfile
fmtmsg
fork
fork1
forkall
forkallx
forkx
fpathconf
fpclass
fpgetmask
fpgetround
fpgetsticky
fprintf
fpsetmask
fpsetround
fpsetsticky
fstat
fstatat
fstatfs
fstatvfs
fsync
ftok
ftruncate
ftrylockfile
ftw
func_to_decimal
funlockfile
futimesat
gconvert
gcvt
getacct
getc_unlocked
getchar_unlocked
getcontext
getcpuid
getcwd
getdate
getdents
getegid
geteuid
getexecname
getgid
getgrent
getgrent_r
getgrgid
getgrgid_r
getgrnam
getgrnam_r
getgroups
gethomelgroup
getisax
getitimer
getlogin
getlogin_r
getmntany
getmntent
getmsg
getopt
getopt_clip
getopt_long
getopt_long_only
getpagesizes
getpagesizes2
getpass
getpeerucred
getpflags
getpgid
getpgrp
getpid
getpmsg
getppid
getppriv
getprivimplinfo
getprojid
getpw
getpwent
getpwent_r
getpwnam
getpwnam_r
getpwuid
getpwuid_r
getrctl
getrlimit
getsid
getspent
getspent_r
getspnam
getspnam_r
getsubopt
gettaskid
gettimeofday
gettxt
getuid
getustack
getutent
getutid
getutline
getutmp
getutmpx
getutxent
getutxid
getutxline
getvfsany
getvfsent
getvfsfile
getvfsspec
getw
getzoneid
getzoneidbyname
getzonenamebyid
gmtime_r
grantpt
gsignal
gtty
hasmntopt
hcreate
hdestroy
hsearch
iconv
iconv_close
iconv_open
initgroups
insque
inst_sync
ioctl
is_system_labeled
isascii
isastream
isatty
issetugid
jrand48
kill
l64a
ladd
lchown
lckpwdf
lcong48
ldivide
lexp10
lfind
link
llabs
lldiv
llog10
llseek
lltostr
lmul
localtime_r
lockf
longjmp
lrand48
lsearch
lseek
lshiftl
lstat
lsub
madvise
makecontext
makeut
makeutx
membar_consumer
membar_enter
membar_exit
membar_producer
memccpy
memcmp
memcntl
memcpy
meminfo
memmove
memset
mincore
mkdir
mkdtemp
mkfifo
mknod
mkstemp
mkstemps
mktemp
mlock
mlockall
mmap
modutx
monitor
mount
mprotect
mrand48
msgctl
msgctl64
msgget
msgids
msgrcv
msgsnap
msgsnd
msync
munlock
munlockall
munmap
mutex_consistent
mutex_destroy
mutex_held
mutex_init
mutex_lock
mutex_trylock
mutex_unlock
nanosleep
nfs_getfh
nfssvc
nftw
nice
nl_langinfo
nrand48
nss_delete
nss_endent
nss_getent
nss_search
nss_setent
ntp_adjtime
ntp_gettime
open
openat
opendir
openlog
pathconf
pause
pclose
pipe
plock
poll
popen
port_alert
port_associate
port_create
port_dissociate
port_get
port_getn
port_send
port_sendn
posix_openpt
posix_spawn
posix_spawn_file_actions_addclose
posix_spawn_file_actions_adddup2
posix_spawn_file_actions_addopen
posix_spawn_file_actions_destroy
posix_spawn_file_actions_init
posix_spawnattr_destroy
posix_spawnattr_getflags
posix_spawnattr_getpgroup
posix_spawnattr_getschedparam
posix_spawnattr_getschedpolicy
posix_spawnattr_getsigdefault
posix_spawnattr_getsigmask
posix_spawnattr_init
posix_spawnattr_setflags
posix_spawnattr_setpgroup
posix_spawnattr_setschedparam
posix_spawnattr_setschedpolicy
posix_spawnattr_setsigdefault
posix_spawnattr_setsigmask
posix_spawnp
pread
printstack
priv_addset
priv_allocset
priv_copyset
priv_delset
priv_emptyset
priv_fillset
priv_freeset
priv_getbyname
priv_getbynum
priv_getsetbyname
priv_getsetbynum
priv_gettext
priv_ineffect
priv_intersect
priv_inverse
priv_isemptyset
priv_isequalset
priv_isfullset
priv_ismember
priv_issubset
priv_set
priv_set_to_str
priv_str_to_set
priv_union
profil
pselect
psiginfo
psignal
pthread_atfork
pthread_attr_destroy
pthread_attr_getdetachstate
pthread_attr_getguardsize
pthread_attr_getinheritsched
pthread_attr_getschedparam
pthread_attr_getschedpolicy
pthread_attr_getscope
pthread_attr_getstack
pthread_attr_getstackaddr
pthread_attr_getstacksize
pthread_attr_init
pthread_attr_setdetachstate
pthread_attr_setguardsize
pthread_attr_setinheritsched
pthread_attr_setschedparam
pthread_attr_setschedpolicy
pthread_attr_setscope
pthread_attr_setstack
pthread_attr_setstackaddr
pthread_attr_setstacksize
pthread_barrier_destroy
pthread_barrier_init
pthread_barrier_wait
pthread_barrierattr_destroy
pthread_barrierattr_getpshared
pthread_barrierattr_init
pthread_barrierattr_setpshared
pthread_cancel
pthread_cond_broadcast
pthread_cond_destroy
pthread_cond_init
pthread_cond_reltimedwait_np
pthread_cond_signal
pthread_cond_timedwait
pthread_cond_wait
pthread_condattr_destroy
pthread_condattr_getclock
pthread_condattr_getpshared
pthread_condattr_init
pthread_condattr_setclock
pthread_condattr_setpshared
pthread_create
pthread_detach
pthread_equal
pthread_exit
pthread_getconcurrency
pthread_getschedparam
pthread_getspecific
pthread_join
pthread_key_create
pthread_key_create_once_np
pthread_key_delete
pthread_kill
pthread_mutex_consistent_np
pthread_mutex_destroy
pthread_mutex_getprioceiling
pthread_mutex_init
pthread_mutex_lock
pthread_mutex_reltimedlock_np
pthread_mutex_setprioceiling
pthread_mutex_timedlock
pthread_mutex_trylock
pthread_mutex_unlock
pthread_mutexattr_destroy
pthread_mutexattr_getprioceiling
pthread_mutexattr_getprotocol
pthread_mutexattr_getpshared
pthread_mutexattr_getrobust_np
pthread_mutexattr_gettype
pthread_mutexattr_init
pthread_mutexattr_setprioceiling
pthread_mutexattr_setprotocol
pthread_mutexattr_setpshared
pthread_mutexattr_setrobust_np
pthread_mutexattr_settype
pthread_once
pthread_rwlock_destroy
pthread_rwlock_init
pthread_rwlock_rdlock
pthread_rwlock_reltimedrdlock_np
pthread_rwlock_reltimedwrlock_np
pthread_rwlock_timedrdlock
pthread_rwlock_timedwrlock
pthread_rwlock_tryrdlock
pthread_rwlock_trywrlock
pthread_rwlock_unlock
pthread_rwlock_wrlock
pthread_rwlockattr_destroy
pthread_rwlockattr_getpshared
pthread_rwlockattr_init
pthread_rwlockattr_setpshared
pthread_self
pthread_setcancelstate
pthread_setcanceltype
pthread_setconcurrency
pthread_setschedparam
pthread_setschedprio
pthread_setspecific
pthread_sigmask
pthread_spin_destroy
pthread_spin_init
pthread_spin_lock
pthread_spin_trylock
pthread_spin_unlock
pthread_testcancel
ptsname
putacct
putc_unlocked
putchar_unlocked
putenv
putmsg
putpmsg
putpwent
putspent
pututline
pututxline
putw
pwrite
qeconvert
qecvt
qfconvert
qfcvt
qgconvert
qgcvt
quadruple_to_decimal
rand_r
rctlctl
rctllist
read
readdir
readdir_r
readlink
readv
realpath
remque
rename
renameat
resolvepath
rewinddir
rmdir
rw_rdlock
rw_read_held
rw_tryrdlock
rw_trywrlock
rw_unlock
rw_write_held
rw_wrlock
rwlock_destroy
rwlock_init
sbrk
scandir
schedctl_exit
schedctl_init
schedctl_lookup
seconvert
seed48
seekdir
select
sem_close
sem_destroy
sem_getvalue
sem_init
sem_open
sem_post
sem_reltimedwait_np
sem_timedwait
sem_trywait
sem_unlink
sem_wait
sema_destroy
sema_held
sema_init
sema_post
sema_reltimedwait
sema_timedwait
sema_trywait
sema_wait
semctl
semctl64
semget
semids
semop
semtimedop
setcontext
setegid
setenv
seteuid
setgid
setgrent
setgroups
setitimer
setjmp
setkey
setlogmask
setpflags
setpgid
setpgrp
setppriv
setprojrctl
setpwent
setrctl
setregid
setreuid
setrlimit
setsid
setspent
settaskid
settimeofday
setuid
setustack
setutent
setutxent
sfconvert
sgconvert
shmat
shmctl
shmctl64
shmdt
shmget
shmids
sig2str
sigaction
sigaddset
sigaltstack
sigdelset
sigemptyset
sigfillset
sigflag
sigfpe
sighold
sigignore
siginterrupt
sigismember
siglongjmp
signal
sigpause
sigpending
sigprocmask
sigqueue
sigrelse
sigsend
sigsendset
sigset
sigsetjmp
sigstack
sigsuspend
sigtimedwait
sigwait
sigwaitinfo
single_to_decimal
sleep
srand48
ssignal
stack_getbounds
stack_inbounds
stack_setbounds
stack_violation
stat
statfs
statvfs
stime
str2sig
strdup
strerror
strerror_r
string_to_decimal
strsignal
strtok_r
strtoll
strtoull
stty
swab
swapcontext
swapctl
symlink
sync
syscall
sysconf
sysfs
sysinfo
syslog
tcdrain
tcflow
tcflush
tcgetattr
tcgetpgrp
tcgetsid
tcsendbreak
tcsetattr
tcsetpgrp
tdelete
tell
telldir
tempnam
tfind
thr_continue
thr_continue_allmutators
thr_continue_mutator
thr_create
thr_exit
thr_getconcurrency
thr_getprio
thr_getspecific
thr_getstate
thr_join
thr_keycreate
thr_keycreate_once
thr_kill
thr_main
thr_min_stack
thr_mutators_barrier
thr_self
thr_setconcurrency
thr_setmutator
thr_setprio
thr_setspecific
thr_setstate
thr_sighndlrinfo
thr_sigsetmask
thr_stksegment
thr_suspend
thr_suspend_allmutators
thr_suspend_mutator
thr_wait_mutator
thr_yield
time
timer_create
timer_delete
timer_getoverrun
timer_gettime
timer_settime
times
tmpnam
tmpnam_r
toascii
truncate
tsearch
ttyname
ttyname_r
ttyslot
twalk
tzset
uadmin
ucred_free
ucred_get
ucred_getamask
ucred_getasid
ucred_getatid
ucred_getauid
ucred_getegid
ucred_geteuid
ucred_getgroups
ucred_getlabel
ucred_getpflags
ucred_getpid
ucred_getprivset
ucred_getprojid
ucred_getrgid
ucred_getruid
ucred_getsgid
ucred_getsuid
ucred_getzoneid
ucred_size
ulckpwdf
ulimit
ulltostr
umask
umount
umount2
uname
unlink
unlinkat
unlockpt
unordered
unsetenv
updwtmp
updwtmpx
usleep
ustat
utime
utimes
utmpname
utmpxname
utssys
verr
verrx
vfork
vforkx
vfscanf
vhangup
vscanf
vsscanf
vsyslog
vwarn
vwarnx
wait
wait3
wait4
waitid
waitpid
walkcontext
warn
warnx
wctomb
wracct
write
writev
yield