Thread.h
上传用户:lijia5631
上传日期:2008-11-10
资源大小:1214k
文件大小:2k
源码类别:

视频捕捉/采集

开发平台:

MultiPlatform

  1. /**
  2.   * HandVu - a library for computer vision-based hand gesture
  3.   * recognition.
  4.   * Copyright (C) 2004 Mathias Kolsch, matz@cs.ucsb.edu
  5.   *
  6.   * This program is free software; you can redistribute it and/or
  7.   * modify it under the terms of the GNU General Public License
  8.   * as published by the Free Software Foundation; either version 2
  9.   * of the License, or (at your option) any later version.
  10.   *
  11.   * This program is distributed in the hope that it will be useful,
  12.   * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.   * GNU General Public License for more details.
  15.   *
  16.   * You should have received a copy of the GNU General Public License
  17.   * along with this program; if not, write to the Free Software
  18.   * Foundation, Inc., 59 Temple Place - Suite 330, 
  19.   * Boston, MA  02111-1307, USA.
  20.   *
  21.   * $Id: Thread.h,v 1.4 2006/01/03 19:36:42 matz Exp $
  22. **/
  23. #ifndef __THREAD__INCLUDED_H_
  24. #define __THREAD__INCLUDED_H_
  25. #if defined(WIN32)
  26. #include <windows.h>
  27. #include <process.h>
  28. //#include <afxwin.h>
  29. //#include <afxmt.h>
  30. #else //WIN32
  31. #include <pthread.h>
  32. #endif //WIN32
  33. // ----------------------------------------------------------------------
  34. // class Thread
  35. // ----------------------------------------------------------------------
  36. class Thread {
  37.  public:
  38.   Thread(void* (*fun)(void*), void* arg);
  39.   void Start();
  40.   void Stop();
  41.   void Join();
  42.   void Suspend(); // automatically releases all held locks
  43.   void Resume();
  44.   void Lock();
  45.   void Unlock();
  46.  protected:
  47.   ~Thread();
  48.   void*                 (*m_fun)(void*);
  49.   void*                   m_arg;
  50. #if defined(WIN32)
  51.   uintptr_t               m_thread;
  52.   HANDLE                  m_mutex;
  53.   //CWinThread*             m_pThread;
  54.   //CCriticalSection     m_lock;
  55. #else //WIN32
  56.   pthread_t               m_threadID;
  57.   pthread_mutex_t         m_mutex;
  58.   pthread_cond_t          m_cond;
  59. #endif //WIN32
  60. };
  61. #endif // __THREAD__INCLUDED_H_