Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 8 Apr 2005 07:53:34 GMT
From:      David Xu <davidxu@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 74723 for review
Message-ID:  <200504080753.j387rYs0022306@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=74723

Change 74723 by davidxu@davidxu_celeron on 2005/04/08 07:52:51

	0 -> NULL.

Affected files ...

.. //depot/projects/davidxu_thread/src/lib/libthr/thread/thr_event.c#6 edit

Differences ...

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

@@ -42,12 +42,12 @@
 
 void _thr_report_create(struct pthread *curthread)
 {
-	_thr_report_event(curthread, TD_CREATE, 0);
+	_thr_report_event(curthread, TD_CREATE, NULL);
 }
 
 void _thr_report_death(struct pthread *curthread)
 {
-	_thr_report_event(curthread, TD_DEATH, 0);
+	_thr_report_event(curthread, TD_DEATH, NULL);
 }
 
 void



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