Path: blob/devel/ElmerGUI/netgen/libsrc/general/parthreads.cpp
3206 views
/**************************************************************************/1/* File: parthreads.cpp */2/* Author: Joachim Schoeberl */3/* Date: 01. Jun. 95 */4/**************************************************************************/567#include <mystdlib.h>8#include <myadt.hpp>910/*1112namespace netgen13{14using namespace netgen;1516#ifdef WIN321718NgLock :: NgLock (NgMutex & mut)19: sl(&mut.cs)20{21;22}2324void NgLock :: Lock ()25{26sl.Lock();27}28void NgLock :: UnLock ()29{30sl.Unlock();31}323334#else3536#endif37}3839*/404142