00001 /*----------------------------------------------------------------------------*/00002 /* Copyright (c) FIRST 2008. All Rights Reserved. */00003 /* Open Source Software - may be modified and shared by FRC teams. The code */00004 /* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib. */00005 /*----------------------------------------------------------------------------*/00006
00007 #include "Synchronized.h"00008
00017Synchronized::Synchronized(SEM_ID semaphore)
00018 {
00019 m_semaphore = semaphore;
00020 semTake(m_semaphore, WAIT_FOREVER);
00021 }
00022
00028Synchronized::~Synchronized()
00029 {
00030 semGive(m_semaphore);
00031 }
Generated on Thu Jan 12 2012 22:35:24 for WPILibC++ by 1.7.1