libXDispatch 0.3.1
include/xdispatch/semaphore.h
Go to the documentation of this file.
00001 
00002 /*
00003 * Copyright (c) 2011 MLBA. All rights reserved.
00004 *
00005 * @MLBA_OPEN_LICENSE_HEADER_START@
00006 *
00007 * Licensed under the Apache License, Version 2.0 (the "License");
00008 * you may not use this file except in compliance with the License.
00009 * You may obtain a copy of the License at
00010 *
00011 *     http://www.apache.org/licenses/LICENSE-2.0
00012 *
00013 * Unless required by applicable law or agreed to in writing, software
00014 * distributed under the License is distributed on an "AS IS" BASIS,
00015 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
00016 * See the License for the specific language governing permissions and
00017 * limitations under the License.
00018 *
00019 * @MLBA_OPEN_LICENSE_HEADER_END@
00020 */
00021 
00022 
00023 #ifndef XDISPATCH_SEMAPHORE_H_
00024 #define XDISPATCH_SEMAPHORE_H_
00025 
00026 #ifndef __XDISPATCH_INDIRECT__
00027 #error "Please #include <xdispatch/dispatch.h> instead of this file directly."
00028 #endif
00029 
00030 #include "dispatch.h"
00031 #include <memory>
00032 
00033 __XDISPATCH_BEGIN_NAMESPACE
00034 
00043 class XDISPATCH_EXPORT semaphore {
00044 
00045 public:
00057     semaphore(int = 1);
00062     semaphore(dispatch_semaphore_t);
00063     semaphore(const semaphore&);
00064     ~semaphore();
00065 
00075     int release();
00083     void acquire();
00093     bool try_acquire(dispatch_time_t);
00103     bool try_acquire(struct tm*);
00109     virtual const dispatch_semaphore_t native() const;
00110 
00111 private:
00112     class data;
00113     data* d;
00114 
00115 };
00116 
00117 XDISPATCH_EXPORT std::ostream& operator<<(std::ostream& stream, const semaphore*);
00118 XDISPATCH_EXPORT std::ostream& operator<<(std::ostream& stream, const semaphore&);
00119 
00120 __XDISPATCH_END_NAMESPACE
00121 
00122 #endif /* XDISPATCH_SEMAPHORE_H_ */

Generated on Wed Feb 22 2012 19:43:56 for libXDispatch by Doxygen 1.7.4
Content © 2011-2012 MLBA (about | privacy) – Design © 2010-2012 Emzeat. All Rights reserved.