PERFORCE change 74892 for review

David Xu davidxu at FreeBSD.org
Sun Apr 10 16:11:40 PDT 2005


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

Change 74892 by davidxu at davidxu_tiger on 2005/04/10 23:11:37

	rename _thr_report_create to _thr_report_creation.

Affected files ...

.. //depot/projects/davidxu_thread/src/lib/libthr/thread/thr_create.c#9 edit
.. //depot/projects/davidxu_thread/src/lib/libthr/thread/thr_event.c#10 edit
.. //depot/projects/davidxu_thread/src/lib/libthr/thread/thr_private.h#15 edit

Differences ...

==== //depot/projects/davidxu_thread/src/lib/libthr/thread/thr_create.c#9 (text+ko) ====

@@ -174,7 +174,7 @@
 		(*thread) = 0;
 		ret = EAGAIN;
 	} else if (locked) {
-		_thr_report_create(curthread, new_thread);
+		_thr_report_creation(curthread, new_thread);
 		THR_THREAD_UNLOCK(curthread, new_thread);
 	}
 	return (ret);

==== //depot/projects/davidxu_thread/src/lib/libthr/thread/thr_event.c#10 (text+ko) ====

@@ -39,7 +39,7 @@
 }
 
 void
-_thr_report_create(struct pthread *curthread, struct pthread *newthread)
+_thr_report_creation(struct pthread *curthread, struct pthread *newthread)
 {
 	THR_UMTX_LOCK(curthread, &_thr_event_lock);
 	_thread_event.event = TD_CREATE;

==== //depot/projects/davidxu_thread/src/lib/libthr/thread/thr_private.h#15 (text+ko) ====

@@ -740,7 +740,7 @@
 void	_thr_unlink(struct pthread *curthread, struct pthread *thread);
 void	_thr_suspend_check(struct pthread *curthread);
 void	_thr_assert_lock_level() __dead2;
-void	_thr_report_create(struct pthread *curthread,
+void	_thr_report_creation(struct pthread *curthread,
 			   struct pthread *newthread);
 void	_thr_report_death(struct pthread *curthread);
 void	_thread_create_bp(void);


More information about the p4-projects mailing list