mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-04 02:42:49 -04:00
47 lines
1.3 KiB
C++
47 lines
1.3 KiB
C++
// Filename: atomicAdjustNsprImpl.h
|
|
// Created by: drose (09Aug02)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// PANDA 3D SOFTWARE
|
|
// Copyright (c) 2001, Disney Enterprises, Inc. All rights reserved
|
|
//
|
|
// All use of this software is subject to the terms of the Panda 3d
|
|
// Software license. You should have received a copy of this license
|
|
// along with this source code; you will also find a current copy of
|
|
// the license at http://www.panda3d.org/license.txt .
|
|
//
|
|
// To contact the maintainers of this program write to
|
|
// panda3d@yahoogroups.com .
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef ATOMICADJUSTNSPRIMPL_H
|
|
#define ATOMICADJUSTNSPRIMPL_H
|
|
|
|
#include "pandabase.h"
|
|
#include "selectThreadImpl.h"
|
|
|
|
#ifdef THREAD_NSPR_IMPL
|
|
|
|
#include "notify.h"
|
|
|
|
#include <pratom.h>
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Class : AtomicAdjustNsprImpl
|
|
// Description : Uses NSPR to implement atomic adjustments.
|
|
////////////////////////////////////////////////////////////////////
|
|
class EXPCL_PANDAEXPRESS AtomicAdjustNsprImpl {
|
|
public:
|
|
INLINE static int inc(int &var);
|
|
INLINE static int dec(int &var);
|
|
INLINE static int set(int &var, int new_value);
|
|
};
|
|
|
|
#include "atomicAdjustNsprImpl.I"
|
|
|
|
#endif // THREAD_NSPR_IMPL
|
|
|
|
#endif
|