Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
michael@0 | 2 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 3 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 4 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 5 | |
michael@0 | 6 | /* |
michael@0 | 7 | ** File: ptmisc.c |
michael@0 | 8 | ** Descritpion: Implemenation of miscellaneous methods for pthreads |
michael@0 | 9 | */ |
michael@0 | 10 | |
michael@0 | 11 | #if defined(_PR_PTHREADS) |
michael@0 | 12 | |
michael@0 | 13 | #include "primpl.h" |
michael@0 | 14 | |
michael@0 | 15 | #include <stdio.h> |
michael@0 | 16 | #ifdef SOLARIS |
michael@0 | 17 | #include <thread.h> |
michael@0 | 18 | #endif |
michael@0 | 19 | |
michael@0 | 20 | #define PT_LOG(f) |
michael@0 | 21 | |
michael@0 | 22 | void _PR_InitCPUs(void) {PT_LOG("_PR_InitCPUs")} |
michael@0 | 23 | void _PR_InitStacks(void) {PT_LOG("_PR_InitStacks")} |
michael@0 | 24 | |
michael@0 | 25 | PR_IMPLEMENT(void) PR_SetConcurrency(PRUintn numCPUs) |
michael@0 | 26 | { |
michael@0 | 27 | #ifdef SOLARIS |
michael@0 | 28 | thr_setconcurrency(numCPUs); |
michael@0 | 29 | #else |
michael@0 | 30 | PT_LOG("PR_SetConcurrency"); |
michael@0 | 31 | #endif |
michael@0 | 32 | } |
michael@0 | 33 | |
michael@0 | 34 | PR_IMPLEMENT(void) PR_SetThreadRecycleMode(PRUint32 flag) |
michael@0 | 35 | {PT_LOG("PR_SetThreadRecycleMode")} |
michael@0 | 36 | |
michael@0 | 37 | #endif /* defined(_PR_PTHREADS) */ |
michael@0 | 38 | |
michael@0 | 39 | /* ptmisc.c */ |