Annotation of parser3/src/targets/cgi/pa_threads.C, revision 1.11

1.1       parser      1: /** @file
                      2:        Parser: zero Mutex realization class.
                      3: 
1.8       paf         4:        Copyright (c) 2001, 2002 ArtLebedev Group (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.11    ! paf         8: static const char* IDENT_THREADS_C="$Date: pa_threads.C,v 1.10 2002/08/01 11:26:52 paf Exp $";
1.1       parser      9: 
                     10: #include "pa_threads.h"
1.4       paf        11: 
                     12: const bool parser_multithreaded=false;
1.6       paf        13: 
1.7       paf        14: pa_thread_t pa_get_thread_id() { return 1; }
1.1       parser     15: 
                     16: Mutex global_mutex;
                     17: 
                     18: Mutex::Mutex() {
                     19: }
                     20: 
                     21: Mutex::~Mutex() {
                     22: }
                     23: 
                     24: void Mutex::acquire() {
                     25: }
                     26: 
                     27: void Mutex::release() {
                     28: }

E-mail: