mirror of
https://github.com/tesseract-ocr/tesseract.git
synced 2024-11-28 13:49:35 +08:00
d8b1456dd5
git-svn-id: https://tesseract-ocr.googlecode.com/svn/trunk@305 d0cd1f9f-072b-0410-8dd7-cf729c803f20
49 lines
972 B
C++
49 lines
972 B
C++
// Copyright 2008 Google Inc. All Rights Reserved.
|
|
// Author: scharron@google.com (Samuel Charron)
|
|
|
|
#include "ccutil.h"
|
|
|
|
namespace tesseract {
|
|
CCUtil::CCUtil()
|
|
: //// mainblk.* /////////////////////////////////////////////////////
|
|
BOOL_MEMBER(m_print_variables, FALSE,
|
|
"Print initial values of all variables"),
|
|
STRING_MEMBER(m_data_sub_dir,
|
|
"tessdata/", "Directory for data files")
|
|
////////////////////////////////////////////////////////////////////
|
|
{
|
|
|
|
}
|
|
|
|
CCUtil::~CCUtil() {
|
|
}
|
|
|
|
|
|
CCUtilMutex::CCUtilMutex() {
|
|
#ifdef WIN32
|
|
mutex_ = CreateMutex(0, FALSE, 0);
|
|
#else
|
|
pthread_mutex_init(&mutex_, NULL);
|
|
#endif
|
|
}
|
|
|
|
void CCUtilMutex::Lock() {
|
|
#ifdef WIN32
|
|
WaitForSingleObject(mutex_, INFINITE);
|
|
#else
|
|
pthread_mutex_lock(&mutex_);
|
|
#endif
|
|
}
|
|
|
|
void CCUtilMutex::Unlock() {
|
|
#ifdef WIN32
|
|
ReleaseMutex(mutex_);
|
|
#else
|
|
pthread_mutex_unlock(&mutex_);
|
|
#endif
|
|
}
|
|
|
|
|
|
CCUtilMutex tprintfMutex;
|
|
} // namespace tesseract
|