PERFORCE change 101637 for review

John Birrell jb at FreeBSD.org
Sat Jul 15 04:07:51 UTC 2006


http://perforce.freebsd.org/chv.cgi?CH=101637

Change 101637 by jb at jb_freebsd2 on 2006/07/15 04:07:18

	More file names that clash with syscall names, resulting in only
	one object being built in the library (libc). This is kind of
	sub-optimal and ends in tears.

Affected files ...

.. //depot/projects/dtrace/src/lib/libthr/thread/Makefile.inc#4 edit
.. //depot/projects/dtrace/src/lib/libthr/thread/pthread_create.c#1 add
.. //depot/projects/dtrace/src/lib/libthr/thread/pthread_exit.c#1 add
.. //depot/projects/dtrace/src/lib/libthr/thread/pthread_kill.c#1 add

Differences ...

==== //depot/projects/dtrace/src/lib/libthr/thread/Makefile.inc#4 (text+ko) ====

@@ -4,6 +4,9 @@
 .PATH: ${.CURDIR}/thread
 
 SRCS+= \
+	pthread_create.c \
+	pthread_exit.c \
+	pthread_kill.c \
 	pthread_self.c \
 	thr_attr.c \
 	thr_barrier.c \
@@ -13,11 +16,9 @@
 	thr_concurrency.c \
 	thr_cond.c \
 	thr_condattr.c \
-	thr_create.c \
 	thr_detach.c \
 	thr_equal.c \
 	thr_event.c \
-	thr_exit.c \
 	thr_fork.c \
 	thr_getprio.c \
 	thr_getschedparam.c \
@@ -26,7 +27,6 @@
 	thr_join.c \
 	thr_list.c \
 	thr_kern.c \
-	thr_kill.c \
 	thr_main_np.c \
 	thr_multi_np.c \
 	thr_mutex.c \


More information about the p4-projects mailing list