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

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.5       paf         5:        Author: Alexander Petrosyan <paf@design.ru> (http://paf.design.ru)
1.1       parser      6: 
1.8     ! paf         7:        $Id: pa_threads.C,v 1.7 2002/01/21 13:04:03 paf Exp $
1.1       parser      8: */
                      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: