Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 21 Apr 2005 07:25:49 GMT
From:      David Xu <davidxu@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 75659 for review
Message-ID:  <200504210725.j3L7PnUE087218@repoman.freebsd.org>

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

Change 75659 by davidxu@davidxu_celeron on 2005/04/21 07:25:24

	thr_create2 -> thr_new.

Affected files ...

.. //depot/projects/davidxu_thread/src/lib/libthr/thread/thr_create.c#13 edit

Differences ...

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

@@ -182,7 +182,7 @@
 	if (new_thread->attr.flags & PTHREAD_SCOPE_SYSTEM)
 		param.flags |= THR_SYSTEM_SCOPE;
 	/* Schedule the new thread. */
-	ret = thr_create2(&param, sizeof(param));
+	ret = thr_new(&param, sizeof(param));
 #if 0
 	ret = thr_create(&uc, &new_thread->tid, 0);
 	__sys_sigprocmask(SIG_SETMASK, &oldsigmask, NULL);



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