aboutsummaryrefslogtreecommitdiff
path: root/lib/libthr/pthread.map
Commit message (Collapse)AuthorAgeFilesLines
* Introduce a non-portable function pthread_getthreadid_np(3) to retrieveJung-uk Kim2011-02-071-0/+2
| | | | | | | | | | calling thread's unique integral ID, which is similar to AIX function of the same name. Bump __FreeBSD_version to note its introduction. Reviewed by: kib Notes: svn path=/head/; revision=218414
* Implement the __pthread_map_stacks_exec() for libthr.Konstantin Belousov2011-01-091-0/+2
| | | | | | | | | | | | | | | Stack creation code is changed to call _rtld_get_stack_prot() to get the stack protection right. There is a race where thread is created during dlopen() of dso that requires executable stacks. Then, _rtld_get_stack_prot() may return PROT_READ | PROT_WRITE, but thread is still not linked into the thread list. In this case, the callback misses the thread stack, and rechecks the required protection afterward. Reviewed by: davidxu Notes: svn path=/head/; revision=217191
* Revert revision 214007, I realized that MySQL wants to resolveDavid Xu2010-10-201-4/+0
| | | | | | | | | | a silly rwlock deadlock problem, the deadlock is caused by writer waiters, if a thread has already locked a reader lock, and wants to acquire another reader lock, it will be blocked by writer waiters, but we had already fixed it years ago. Notes: svn path=/head/; revision=214093
* sort function name.David Xu2010-10-181-2/+2
| | | | Notes: svn path=/head/; revision=214009
* Add pthread_rwlockattr_setkind_np and pthread_rwlockattr_getkind_np, theDavid Xu2010-10-181-0/+4
| | | | | | | | | | | | functions set or get pthread_rwlock type, current supported types are: PTHREAD_RWLOCK_PREFER_READER_NP, PTHREAD_RWLOCK_PREFER_WRITER_NONRECURSIVE_NP, PTHREAD_RWLOCK_PREFER_WRITER_NP, default is PTHREAD_RWLOCK_PREFER_WRITER_NONCECURSIVE_NP, this maintains binary compatible with old code. Notes: svn path=/head/; revision=214007
* To support stack unwinding for cancellation points, add -fexceptions flagDavid Xu2010-09-251-0/+2
| | | | | | | | | | for them, two functions _pthread_cancel_enter and _pthread_cancel_leave are added to let thread enter and leave a cancellation point, it also makes it possible that other functions can be cancellation points in libraries without having to be rewritten in libthr. Notes: svn path=/head/; revision=213153
* Update symbol.David Xu2010-09-131-1/+1
| | | | Notes: svn path=/head/; revision=212548
* Add wrapper for setcontext() and swapcontext(), the wrappersDavid Xu2010-08-241-0/+4
| | | | | | | unblock SIGCANCEL which is needed by thread cancellation. Notes: svn path=/head/; revision=211737
* On shared object unload, in __cxa_finalize, call and clear all installedKonstantin Belousov2010-08-231-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | atexit and __cxa_atexit handlers that are either installed by unloaded dso, or points to the functions provided by the dso. Use _rtld_addr_phdr to locate segment information from the address of private variable belonging to the dso, supplied by crtstuff.c. Provide utility function __elf_phdr_match_addr to do the match of address against dso executable segment. Call back into libthr from __cxa_finalize using weak __pthread_cxa_finalize symbol to remove any atfork handler which function points into unloaded object. The rtld needs private __pthread_cxa_finalize symbol to not require resolution of the weak undefined symbol at initialization time. This cannot work, since rtld is relocated before sym_zero is set up. Idea by: kan Reviewed by: kan (previous version) MFC after: 3 weeks Notes: svn path=/head/; revision=211706
* Remove extra new semaphore stubs, because libc already has them, andDavid Xu2010-01-051-7/+0
| | | | | | | | | ld can find the newest version which is default. Poked by: kan@ Notes: svn path=/head/; revision=201559
* Use umtx to implement process sharable semaphore, to make this work,David Xu2010-01-051-14/+7
| | | | | | | | | | | | | | | | | | | | | | | | | now type sema_t is a structure which can be put in a shared memory area, and multiple processes can operate it concurrently. User can either use mmap(MAP_SHARED) + sem_init(pshared=1) or use sem_open() to initialize a shared semaphore. Named semaphore uses file system and is located in /tmp directory, and its file name is prefixed with 'SEMD', so now it is chroot or jail friendly. In simplist cases, both for named and un-named semaphore, userland code does not have to enter kernel to reduce/increase semaphore's count. The semaphore is designed to be crash-safe, it means even if an application is crashed in the middle of operating semaphore, the semaphore state is still safely recovered by later use, there is no waiter counter maintained by userland code. The main semaphore code is in libc and libthr only has some necessary stubs, this makes it possible that a non-threaded application can use semaphore without linking to thread library. Old semaphore implementation is kept libc to maintain binary compatibility. The kernel ksem API is no longer used in the new implemenation. Discussed on: threads@ Notes: svn path=/head/; revision=201546
* Make openat(2) a cancellation point.Jilles Tjoelker2009-10-111-0/+5
| | | | | | | | | | This is required by POSIX and matches open(2). Reviewed by: kib, jhb MFC after: 1 month Notes: svn path=/head/; revision=197968
* Make pthread_cleanup_push() and pthread_cleanup_pop() as a pair of macros,David Xu2008-06-091-0/+2
| | | | | | | | | | use stack space to keep cleanup information, this eliminates overhead of calling malloc() and free() in thread library. Discussed on: thread@ Notes: svn path=/head/; revision=179662
* Add POSIX pthread API pthread_getcpuclockid() to get a thread's cpuDavid Xu2008-03-221-0/+2
| | | | | | | time clock id. Notes: svn path=/head/; revision=177494
* Add more cpu affinity function's symbols.David Xu2008-03-051-0/+6
| | | | Notes: svn path=/head/; revision=176816
* Implement functions pthread_getaffinity_np and pthread_setaffinity_np toDavid Xu2008-03-031-1/+3
| | | | | | | get and set thread's cpu affinity mask. Notes: svn path=/head/; revision=176763
* Yet another pointy hat: when I zapped FBSDprivate_1.1, I forgot to moveDag-Erling Smørgrav2008-02-061-0/+1
| | | | | | | its contents to FBSDprivate_1.0. Notes: svn path=/head/; revision=176061
* Convert pthread.map to the format expected by version_gen.awk, and modifyDag-Erling Smørgrav2008-02-061-10/+1
| | | | | | | | | the Makefile accordingly; libthr now explicitly uses libc's Versions.def. MFC after: 2 weeks Notes: svn path=/head/; revision=176054
* Remove incorrectly added FBSDprivate_1.1 namespace, and move symbols whichDag-Erling Smørgrav2008-02-061-12/+4
| | | | | | | are new in FreeBSD 8 to the appropriate namespace. Notes: svn path=/head/; revision=176053
* Per discussion on -threads, rename _islocked_np() to _isowned_np().Dag-Erling Smørgrav2008-02-061-2/+2
| | | | Notes: svn path=/head/; revision=176049
* Add pthread_mutex_islocked_np(), a cheap way to verify that a mutex isDag-Erling Smørgrav2008-02-031-0/+15
| | | | | | | | | | locked. This is intended primarily to support the userland equivalent of the various *_ASSERT_LOCKED() macros we have in the kernel. MFC after: 2 weeks Notes: svn path=/head/; revision=175958
* Remove vfork() overloading, it is no longer needed.David Xu2007-12-201-2/+0
| | | | Notes: svn path=/head/; revision=174805
* 1. Add function pthread_mutex_setspinloops_np to turn a mutex's spinDavid Xu2007-12-141-0/+8
| | | | | | | | | | | loop count. 2. Add function pthread_mutex_setyieldloops_np to turn a mutex's yield loop count. 3. Make environment variables PTHREAD_SPINLOOPS and PTHREAD_YIELDLOOPS to be only used for turnning PTHREAD_MUTEX_ADAPTIVE_NP mutex. Notes: svn path=/head/; revision=174585
* Add _pthread_mutex_init_calloc_cb() to libthr and libkse, so that malloc(3)Jason Evans2007-11-271-0/+1
| | | | | | | | (part of libc) can use pthreads mutexes without causing infinite recursion during initialization. Notes: svn path=/head/; revision=173967
* Enable symbol versioning by default. Use WITHOUT_SYMVER to disable it.Daniel Eischen2007-05-131-374/+0
| | | | | | | | | | | | | Warning, after symbol versioning is enabled, going back is not easy (use WITHOUT_SYMVER at your own risk). Change the default thread library to libthr. There most likely still needs to be a version bump for at least the thread libraries. If necessary, this will happen later. Notes: svn path=/head/; revision=169524
* Use C comments since we now preprocess these files with CPP.Daniel Eischen2007-04-291-11/+14
| | | | Notes: svn path=/head/; revision=169092
* 1. Don't override underscore version of aio_suspend(), system(),David Xu2006-07-251-22/+22
| | | | | | | | | | | | | wait(), waitpid() and usleep(), they are internal versions and should not be cancellation points. 2. Make wait3() as a cancellation point. 3. Move raise() and pause() into file thr_sig.c. 4. Add functions _sigsuspend, _sigwait, _sigtimedwait and _sigwaitinfo, remove SIGCANCEL bit in wait-set for those functions, the signal is used internally to implement thread cancellation. Notes: svn path=/head/; revision=160662
* Add symbol versions: FBSD_1.0 and FBSDprivate.David Xu2006-05-111-3/+387
| | | | Notes: svn path=/head/; revision=158425
* WARNS level 4 cleanup.David Xu2006-04-041-13/+8
| | | | Notes: svn path=/head/; revision=157457
* Remove mqueue and timer, now they are in librt.David Xu2006-03-081-8/+0
| | | | Notes: svn path=/head/; revision=156452
* 1. Add SIGEV_THREAD notification for mq_notify.David Xu2006-01-041-0/+4
| | | | | | | | 2. Reuse current timer code and abstract some common code to to support both timer and mqueue. Notes: svn path=/head/; revision=154021
* Follow the mistake in libpthread, the first version name in libpthreadDavid Xu2005-12-211-1/+1
| | | | | | | | | is LIBTHREAD_1_0, but really it should be LIBPTHREAD_1_0. Fix it so libmap.conf works again (it was broken by recent versioning code in rtld_elf). Notes: svn path=/head/; revision=153591
* Add code to handle timer_delete(). The timer wrapper code is completelyDavid Xu2005-11-011-0/+2
| | | | | | | | | rewritten, now timers created with same sigev_notify_attributes will run in same thread, this allows user to organize which timers can run in same thread to save some thread resource. Notes: svn path=/head/; revision=151922
* Add timer_create wrapper.David Xu2005-10-301-0/+2
| | | | Notes: svn path=/head/; revision=151871
* Put pthread_condattr_init sorted order.David Xu2005-10-251-1/+1
| | | | Notes: svn path=/head/; revision=151637
* Export following functions:David Xu2005-10-241-0/+6
| | | | | | | | | | | | _pthread_mutexattr_getpshared _pthread_mutexattr_setpshared pthread_condattr_getpshared pthread_condattr_setpshared pthread_mutexattr_getpshared pthread_mutexattr_setpshared Notes: svn path=/head/; revision=151609
* Sort function names.David Xu2005-10-041-2/+2
| | | | Notes: svn path=/head/; revision=150904
* Add function pthread_timedjoin_np, the function is similar with pthread_joinDavid Xu2005-10-041-0/+2
| | | | | | | | except the function will return ETIMEDOUT if target thread does not exit before specified absolute time passes. Notes: svn path=/head/; revision=150901
* Add usleep to the map files.Daniel Eischen2005-08-031-0/+2
| | | | | | | Noticed by: davidxu Notes: svn path=/head/; revision=148662
* Add debugger event reporting support, current only TD_CREATE and TD_DEATHDavid Xu2005-04-121-5/+10
| | | | | | | events are reported. Notes: svn path=/head/; revision=144921
* Export pthread_condattr_getclock, pthread_condattr_setclock.David Xu2005-04-031-0/+2
| | | | Notes: svn path=/head/; revision=144614
* Import my recent 1:1 threading working. some features improved includes:David Xu2005-04-021-0/+365
1. fast simple type mutex. 2. __thread tls works. 3. asynchronous cancellation works ( using signal ). 4. thread synchronization is fully based on umtx, mainly, condition variable and other synchronization objects were rewritten by using umtx directly. those objects can be shared between processes via shared memory, it has to change ABI which does not happen yet. 5. default stack size is increased to 1M on 32 bits platform, 2M for 64 bits platform. As the result, some mysql super-smack benchmarks show performance is improved massivly. Okayed by: jeff, mtm, rwatson, scottl Notes: svn path=/head/; revision=144518