Date: Sun, 10 Apr 2005 23:11:39 GMT From: David Xu <davidxu@FreeBSD.org> To: Perforce Change Reviews <perforce@freebsd.org> Subject: PERFORCE change 74892 for review Message-ID: <200504102311.j3ANBdGi001451@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=74892 Change 74892 by davidxu@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);
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200504102311.j3ANBdGi001451>