PERFORCE change 75659 for review
David Xu
davidxu at FreeBSD.org
Thu Apr 21 00:25:51 PDT 2005
http://perforce.freebsd.org/chv.cgi?CH=75659
Change 75659 by davidxu at 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(¶m, sizeof(param));
+ ret = thr_new(¶m, sizeof(param));
#if 0
ret = thr_create(&uc, &new_thread->tid, 0);
__sys_sigprocmask(SIG_SETMASK, &oldsigmask, NULL);
More information about the p4-projects
mailing list