Annotation of parser3/src/targets/cgi/pa_threads.C, revision 1.20
1.1 parser 1: /** @file
2: Parser: zero Mutex realization class.
3:
1.19 moko 4: Copyright (c) 2001-2017 Art. Lebedev Studio (http://www.artlebedev.com)
1.9 paf 5: Author: Alexandr Petrosian <paf@design.ru> (http://paf.design.ru)
1.10 paf 6: */
1.1 parser 7:
1.17 moko 8: #include "pa_threads.h"
1.1 parser 9:
1.20 ! moko 10: volatile const char * IDENT_PA_THREADS_C="$Id: pa_threads.C,v 1.19 2017/02/07 22:00:45 moko Exp $" IDENT_PA_THREADS_H;
1.6 paf 11:
1.7 paf 12: pa_thread_t pa_get_thread_id() { return 1; }
1.1 parser 13:
14: Mutex global_mutex;
15:
16: Mutex::Mutex() {
17: }
18:
19: Mutex::~Mutex() {
20: }
21:
22: void Mutex::acquire() {
23: }
24:
25: void Mutex::release() {
26: }
E-mail: