]>
Commit | Line | Data |
---|---|---|
b37bf2e1 A |
1 | /* |
2 | * Copyright (C) 2006, 2007, Apple Inc. All rights reserved. | |
3 | */ | |
4 | ||
5 | #include <pthread.h> | |
6 | ||
7 | #ifdef __cplusplus | |
8 | extern "C" { | |
9 | #endif | |
10 | ||
11 | int JSLockDropAllLocks(void); | |
12 | void JSLockRecoverAllLocks(int lockCount); | |
13 | void JSSetJavaScriptCollectionThread (pthread_t thread); | |
14 | pthread_t JSJavaScriptCollectionThread (void); | |
15 | ||
16 | #ifdef __cplusplus | |
17 | } | |
18 | #endif | |
19 |