diff options
author | deischen <deischen@FreeBSD.org> | 2005-08-03 01:54:52 +0000 |
---|---|---|
committer | deischen <deischen@FreeBSD.org> | 2005-08-03 01:54:52 +0000 |
commit | a1a323c7edf59b909e7b9f879d340818e47a1a24 (patch) | |
tree | e4dbb78d799fcccfc63fd7b24e61d9d5815dfb08 /lib | |
parent | 69017b27e9c7eff3ef680bc13b84263d1bc75e92 (diff) | |
download | FreeBSD-src-a1a323c7edf59b909e7b9f879d340818e47a1a24.zip FreeBSD-src-a1a323c7edf59b909e7b9f879d340818e47a1a24.tar.gz |
Add usleep to the map files.
Noticed by: davidxu
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libpthread/pthread.map | 2 | ||||
-rw-r--r-- | lib/libthr/pthread.map | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/lib/libpthread/pthread.map b/lib/libpthread/pthread.map index 706f54f..2c8f154 100644 --- a/lib/libpthread/pthread.map +++ b/lib/libpthread/pthread.map @@ -170,6 +170,7 @@ global: _spinunlock; _system; _tcdrain; + _usleep; _vfork; _wait; _waitpid; @@ -324,6 +325,7 @@ global: sleep; system; tcdrain; + usleep; vfork; wait; wait4; diff --git a/lib/libthr/pthread.map b/lib/libthr/pthread.map index be30e96..3cb7a38 100644 --- a/lib/libthr/pthread.map +++ b/lib/libthr/pthread.map @@ -175,6 +175,7 @@ global: _spinunlock; _system; _tcdrain; + _usleep; _vfork; _wait; _waitpid; @@ -334,6 +335,7 @@ global: sleep; system; tcdrain; + usleep; vfork; wait; wait4; |