cvs commit: src/lib/libpthread Makefile pthread.map
 src/lib/libpthread/support Makefile.inc thr_support.c
 src/lib/libpthread/sys Makefile.inc src/lib/libpthread/thread
 Makefile.inc thr_cond.c thr_exit.c thr_init.c thr_mutex.c ...
    Alexander Kabaev 
    kan at FreeBSD.org
       
    Thu May 29 17:21:54 PDT 2003
    
    
  
kan         2003/05/29 17:21:53 PDT
  FreeBSD src repository
  Modified files:
    lib/libpthread       Makefile 
    lib/libpthread/sys   Makefile.inc 
    lib/libpthread/thread Makefile.inc thr_cond.c thr_exit.c 
                          thr_init.c thr_mutex.c thr_private.h 
                          thr_rwlock.c 
  Added files:
    lib/libpthread       pthread.map 
    lib/libpthread/support Makefile.inc thr_support.c 
    lib/libpthread/thread thr_rtld.c 
  Log:
  Attempt to eliminate PLT relocations from rwlock aquire/release
  path, making them suitable for direct use by the dynamic loader.
  
  Register libpthread-specific locking API with rtld on startup.
  
  This still has some rough edges with signals which should be
  addresses later.
  
  Approved by:    re (scottl)
  
  Revision  Changes    Path
  1.42      +5 -0      src/lib/libpthread/Makefile
  1.1       +296 -0    src/lib/libpthread/pthread.map (new)
  1.1       +10 -0     src/lib/libpthread/support/Makefile.inc (new)
  1.1       +55 -0     src/lib/libpthread/support/thr_support.c (new)
  1.14      +1 -0      src/lib/libpthread/sys/Makefile.inc
  1.41      +1 -0      src/lib/libpthread/thread/Makefile.inc
  1.43      +7 -1      src/lib/libpthread/thread/thr_cond.c
  1.33      +2 -6      src/lib/libpthread/thread/thr_exit.c
  1.54      +2 -0      src/lib/libpthread/thread/thr_init.c
  1.36      +4 -0      src/lib/libpthread/thread/thr_mutex.c
  1.89      +20 -0     src/lib/libpthread/thread/thr_private.h
  1.1       +137 -0    src/lib/libpthread/thread/thr_rtld.c (new)
  1.12      +19 -14    src/lib/libpthread/thread/thr_rwlock.c
    
    
More information about the cvs-all
mailing list