Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 29 May 2003 17:21:53 -0700 (PDT)
From:      Alexander Kabaev <kan@FreeBSD.org>
To:        src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
Subject:   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 ...
Message-ID:  <200305300021.h4U0Lr9j079728@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200305300021.h4U0Lr9j079728>