summaryrefslogtreecommitdiff
path: root/pr/src/pthreads/ptmisc.c
diff options
context:
space:
mode:
Diffstat (limited to 'pr/src/pthreads/ptmisc.c')
-rw-r--r--pr/src/pthreads/ptmisc.c16
1 files changed, 11 insertions, 5 deletions
diff --git a/pr/src/pthreads/ptmisc.c b/pr/src/pthreads/ptmisc.c
index 9750c251..4069f585 100644
--- a/pr/src/pthreads/ptmisc.c
+++ b/pr/src/pthreads/ptmisc.c
@@ -19,20 +19,26 @@
#define PT_LOG(f)
-void _PR_InitCPUs(void) {PT_LOG("_PR_InitCPUs")}
-void _PR_InitStacks(void) {PT_LOG("_PR_InitStacks")}
+void _PR_InitCPUs(void) {
+ PT_LOG("_PR_InitCPUs")
+}
+void _PR_InitStacks(void) {
+ PT_LOG("_PR_InitStacks")
+}
PR_IMPLEMENT(void) PR_SetConcurrency(PRUintn numCPUs)
{
#ifdef SOLARIS
- thr_setconcurrency(numCPUs);
+ thr_setconcurrency(numCPUs);
#else
- PT_LOG("PR_SetConcurrency");
+ PT_LOG("PR_SetConcurrency");
#endif
}
PR_IMPLEMENT(void) PR_SetThreadRecycleMode(PRUint32 flag)
- {PT_LOG("PR_SetThreadRecycleMode")}
+{
+ PT_LOG("PR_SetThreadRecycleMode")
+}
#endif /* defined(_PR_PTHREADS) */