Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 16 Sep 2002 01:45:39 -0700 (PDT)
From:      Jonathan Mini <mini@FreeBSD.org>
To:        cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject:   cvs commit: src/lib/libpthread Makefile src/lib/libpthread/sys Makefile.inc thr_error.c src/lib/libpthread/thread Makefile.inc thr_acl_aclcheck_fd.c thr_aio_suspend.c thr_attr_destroy.c thr_attr_getdetachstate.c thr_attr_getguardsize.c thr_attr_getinheritsched.c ...
Message-ID:  <200209160845.g8G8jdEc022792@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
mini        2002/09/16 01:45:39 PDT

  Modified files:
    lib/libpthread       Makefile 
    lib/libpthread/sys   Makefile.inc thr_error.c 
    lib/libpthread/thread Makefile.inc thr_acl_aclcheck_fd.c 
                          thr_aio_suspend.c thr_attr_destroy.c 
                          thr_attr_getdetachstate.c 
                          thr_attr_getguardsize.c 
                          thr_attr_getinheritsched.c 
                          thr_attr_getschedparam.c 
                          thr_attr_getschedpolicy.c 
                          thr_attr_getscope.c 
                          thr_attr_getstackaddr.c 
                          thr_attr_getstacksize.c thr_attr_init.c 
                          thr_attr_setcreatesuspend_np.c 
                          thr_attr_setdetachstate.c 
                          thr_attr_setguardsize.c 
                          thr_attr_setinheritsched.c 
                          thr_attr_setschedparam.c 
                          thr_attr_setschedpolicy.c 
                          thr_attr_setscope.c 
                          thr_attr_setstackaddr.c 
                          thr_attr_setstacksize.c thr_cancel.c 
                          thr_clean.c thr_close.c thr_cond.c 
                          thr_condattr_destroy.c 
                          thr_condattr_init.c thr_creat.c 
                          thr_create.c thr_detach.c thr_equal.c 
                          thr_exit.c thr_fcntl.c thr_find_thread.c 
                          thr_fork.c thr_fsync.c thr_gc.c 
                          thr_getprio.c thr_getschedparam.c 
                          thr_info.c thr_init.c thr_join.c 
                          thr_kern.c thr_kill.c thr_main_np.c 
                          thr_mattr_init.c thr_mattr_kind_np.c 
                          thr_msync.c thr_mutex.c 
                          thr_mutex_prioceiling.c 
                          thr_mutex_protocol.c 
                          thr_mutexattr_destroy.c thr_nanosleep.c 
                          thr_once.c thr_open.c thr_pause.c 
                          thr_poll.c thr_priority_queue.c 
                          thr_private.h thr_pselect.c thr_read.c 
                          thr_readv.c thr_resume_np.c thr_rwlock.c 
                          thr_rwlockattr.c thr_select.c thr_self.c 
                          thr_sem.c thr_seterrno.c thr_setprio.c 
                          thr_setschedparam.c thr_sig.c 
                          thr_sigaction.c thr_sigmask.c 
                          thr_sigpending.c thr_sigprocmask.c 
                          thr_sigsuspend.c thr_sigwait.c 
                          thr_sleep.c thr_spec.c thr_spinlock.c 
                          thr_stack.c thr_suspend_np.c 
                          thr_switch_np.c thr_system.c 
                          thr_tcdrain.c thr_wait.c thr_wait4.c 
                          thr_waitpid.c thr_write.c thr_writev.c 
                          thr_yield.c 
  Log:
  Make the changes needed for libpthread to compile in its new home.
  The new libpthread will provide POSIX threading support using KSE.
  These files were previously repo-copied from src/lib/libc_r.
  
  Reviewed by:    deischen
  Approved by:    -arch
  
  Revision  Changes    Path
  1.32      +4 -4      src/lib/libpthread/Makefile
  1.11      +2 -2      src/lib/libpthread/sys/Makefile.inc
  1.4       +1 -1      src/lib/libpthread/sys/thr_error.c
  1.34      +92 -133   src/lib/libpthread/thread/Makefile.inc
  1.4       +2 -2      src/lib/libpthread/thread/thr_acl_aclcheck_fd.c
  1.6       +2 -2      src/lib/libpthread/thread/thr_aio_suspend.c
  1.7       +2 -2      src/lib/libpthread/thread/thr_attr_destroy.c
  1.7       +2 -2      src/lib/libpthread/thread/thr_attr_getdetachstate.c
  1.2       +1 -1      src/lib/libpthread/thread/thr_attr_getguardsize.c
  1.7       +2 -2      src/lib/libpthread/thread/thr_attr_getinheritsched.c
  1.7       +2 -2      src/lib/libpthread/thread/thr_attr_getschedparam.c
  1.7       +2 -2      src/lib/libpthread/thread/thr_attr_getschedpolicy.c
  1.7       +2 -2      src/lib/libpthread/thread/thr_attr_getscope.c
  1.7       +2 -2      src/lib/libpthread/thread/thr_attr_getstackaddr.c
  1.7       +2 -2      src/lib/libpthread/thread/thr_attr_getstacksize.c
  1.7       +2 -2      src/lib/libpthread/thread/thr_attr_init.c
  1.6       +2 -2      src/lib/libpthread/thread/thr_attr_setcreatesuspend_np.c
  1.7       +2 -2      src/lib/libpthread/thread/thr_attr_setdetachstate.c
  1.4       +1 -1      src/lib/libpthread/thread/thr_attr_setguardsize.c
  1.6       +2 -2      src/lib/libpthread/thread/thr_attr_setinheritsched.c
  1.9       +2 -2      src/lib/libpthread/thread/thr_attr_setschedparam.c
  1.7       +2 -2      src/lib/libpthread/thread/thr_attr_setschedpolicy.c
  1.8       +1 -1      src/lib/libpthread/thread/thr_attr_setscope.c
  1.7       +2 -2      src/lib/libpthread/thread/thr_attr_setstackaddr.c
  1.8       +2 -2      src/lib/libpthread/thread/thr_attr_setstacksize.c
  1.15      +1 -1      src/lib/libpthread/thread/thr_cancel.c
  1.7       +2 -2      src/lib/libpthread/thread/thr_clean.c
  1.14      +1 -1      src/lib/libpthread/thread/thr_close.c
  1.34      +1 -1      src/lib/libpthread/thread/thr_cond.c
  1.7       +2 -2      src/lib/libpthread/thread/thr_condattr_destroy.c
  1.7       +2 -2      src/lib/libpthread/thread/thr_condattr_init.c
  1.5       +2 -2      src/lib/libpthread/thread/thr_creat.c
  1.35      +1 -1      src/lib/libpthread/thread/thr_create.c
  1.18      +1 -1      src/lib/libpthread/thread/thr_detach.c
  1.6       +2 -2      src/lib/libpthread/thread/thr_equal.c
  1.28      +1 -1      src/lib/libpthread/thread/thr_exit.c
  1.16      +1 -1      src/lib/libpthread/thread/thr_fcntl.c
  1.8       +2 -2      src/lib/libpthread/thread/thr_find_thread.c
  1.28      +1 -1      src/lib/libpthread/thread/thr_fork.c
  1.11      +2 -2      src/lib/libpthread/thread/thr_fsync.c
  1.17      +2 -2      src/lib/libpthread/thread/thr_gc.c
  1.9       +2 -2      src/lib/libpthread/thread/thr_getprio.c
  1.8       +2 -2      src/lib/libpthread/thread/thr_getschedparam.c
  1.21      +2 -2      src/lib/libpthread/thread/thr_info.c
  1.42      +1 -1      src/lib/libpthread/thread/thr_init.c
  1.21      +1 -1      src/lib/libpthread/thread/thr_join.c
  1.43      +1 -1      src/lib/libpthread/thread/thr_kern.c
  1.13      +2 -2      src/lib/libpthread/thread/thr_kill.c
  1.4       +1 -1      src/lib/libpthread/thread/thr_main_np.c
  1.8       +2 -2      src/lib/libpthread/thread/thr_mattr_init.c
  1.8       +2 -2      src/lib/libpthread/thread/thr_mattr_kind_np.c
  1.6       +2 -2      src/lib/libpthread/thread/thr_msync.c
  1.32      +1 -1      src/lib/libpthread/thread/thr_mutex.c
  1.6       +2 -2      src/lib/libpthread/thread/thr_mutex_prioceiling.c
  1.6       +2 -2      src/lib/libpthread/thread/thr_mutex_protocol.c
  1.8       +2 -2      src/lib/libpthread/thread/thr_mutexattr_destroy.c
  1.17      +2 -2      src/lib/libpthread/thread/thr_nanosleep.c
  1.7       +2 -2      src/lib/libpthread/thread/thr_once.c
  1.13      +2 -2      src/lib/libpthread/thread/thr_open.c
  1.5       +2 -2      src/lib/libpthread/thread/thr_pause.c
  1.13      +1 -1      src/lib/libpthread/thread/thr_poll.c
  1.9       +1 -1      src/lib/libpthread/thread/thr_priority_queue.c
  1.74      +3 -3      src/lib/libpthread/thread/thr_private.h
  1.2       +1 -1      src/lib/libpthread/thread/thr_pselect.c
  1.15      +1 -1      src/lib/libpthread/thread/thr_read.c
  1.16      +1 -1      src/lib/libpthread/thread/thr_readv.c
  1.14      +1 -1      src/lib/libpthread/thread/thr_resume_np.c
  1.8       +1 -1      src/lib/libpthread/thread/thr_rwlock.c
  1.8       +2 -2      src/lib/libpthread/thread/thr_rwlockattr.c
  1.22      +1 -1      src/lib/libpthread/thread/thr_select.c
  1.6       +2 -2      src/lib/libpthread/thread/thr_self.c
  1.11      +2 -2      src/lib/libpthread/thread/thr_sem.c
  1.6       +2 -2      src/lib/libpthread/thread/thr_seterrno.c
  1.10      +2 -2      src/lib/libpthread/thread/thr_setprio.c
  1.10      +2 -2      src/lib/libpthread/thread/thr_setschedparam.c
  1.43      +1 -1      src/lib/libpthread/thread/thr_sig.c
  1.16      +2 -2      src/lib/libpthread/thread/thr_sigaction.c
  1.10      +2 -2      src/lib/libpthread/thread/thr_sigmask.c
  1.10      +1 -1      src/lib/libpthread/thread/thr_sigpending.c
  1.13      +2 -2      src/lib/libpthread/thread/thr_sigprocmask.c
  1.13      +1 -1      src/lib/libpthread/thread/thr_sigsuspend.c
  1.19      +2 -2      src/lib/libpthread/thread/thr_sigwait.c
  1.5       +2 -2      src/lib/libpthread/thread/thr_sleep.c
  1.18      +1 -1      src/lib/libpthread/thread/thr_spec.c
  1.12      +1 -1      src/lib/libpthread/thread/thr_spinlock.c
  1.5       +1 -1      src/lib/libpthread/thread/thr_stack.c
  1.15      +1 -1      src/lib/libpthread/thread/thr_suspend_np.c
  1.6       +2 -2      src/lib/libpthread/thread/thr_switch_np.c
  1.5       +2 -2      src/lib/libpthread/thread/thr_system.c
  1.5       +2 -2      src/lib/libpthread/thread/thr_tcdrain.c
  1.5       +2 -2      src/lib/libpthread/thread/thr_wait.c
  1.15      +1 -1      src/lib/libpthread/thread/thr_wait4.c
  1.5       +2 -2      src/lib/libpthread/thread/thr_waitpid.c
  1.21      +1 -1      src/lib/libpthread/thread/thr_write.c
  1.21      +1 -1      src/lib/libpthread/thread/thr_writev.c
  1.8       +2 -2      src/lib/libpthread/thread/thr_yield.c

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe cvs-all" in the body of the message




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