2012-08-28 02:41:49 +08:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
|
|
*
|
2012-10-19 11:48:42 +08:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2012-08-28 02:41:49 +08:00
|
|
|
#ifndef jslock_h__
|
|
|
|
#define jslock_h__
|
|
|
|
|
|
|
|
#include "jsapi.h"
|
|
|
|
|
|
|
|
#ifdef JS_THREADSAFE
|
|
|
|
|
|
|
|
# include "pratom.h"
|
|
|
|
# include "prlock.h"
|
|
|
|
# include "prcvar.h"
|
|
|
|
# include "prthread.h"
|
|
|
|
# include "prinit.h"
|
|
|
|
|
2012-10-31 10:33:43 +08:00
|
|
|
# define JS_ATOMIC_INCREMENT(p) PR_ATOMIC_INCREMENT((int32_t *)(p))
|
|
|
|
# define JS_ATOMIC_DECREMENT(p) PR_ATOMIC_DECREMENT((int32_t *)(p))
|
|
|
|
# define JS_ATOMIC_ADD(p,v) PR_ATOMIC_ADD((int32_t *)(p), (int32_t)(v))
|
|
|
|
# define JS_ATOMIC_SET(p,v) PR_ATOMIC_SET((int32_t *)(p), (int32_t)(v))
|
2012-08-28 02:41:49 +08:00
|
|
|
|
2013-01-09 13:42:21 +08:00
|
|
|
namespace js {
|
2013-04-10 11:19:43 +08:00
|
|
|
// Defined in jsgc.cpp.
|
2013-01-09 13:42:21 +08:00
|
|
|
unsigned GetCPUCount();
|
|
|
|
}
|
|
|
|
|
2012-08-28 02:41:49 +08:00
|
|
|
#else /* JS_THREADSAFE */
|
|
|
|
|
2012-10-19 11:48:42 +08:00
|
|
|
typedef struct PRThread PRThread;
|
|
|
|
typedef struct PRCondVar PRCondVar;
|
|
|
|
typedef struct PRLock PRLock;
|
|
|
|
|
2012-08-28 02:41:49 +08:00
|
|
|
# define JS_ATOMIC_INCREMENT(p) (++*(p))
|
|
|
|
# define JS_ATOMIC_DECREMENT(p) (--*(p))
|
|
|
|
# define JS_ATOMIC_ADD(p,v) (*(p) += (v))
|
|
|
|
# define JS_ATOMIC_SET(p,v) (*(p) = (v))
|
|
|
|
|
|
|
|
#endif /* JS_THREADSAFE */
|
|
|
|
|
|
|
|
#endif /* jslock_h___ */
|