⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ffthreads.hpp

📁 FreeFem++可以生成高质量的有限元网格。可以用于流体力学
💻 HPP
字号:
// SUMMARY  : Threads for Linux and Microsoft Win32// USAGE    :        // ORG      : // AUTHOR   : Antoine Le Hyaric, Modif F. hecht// E-MAIL   : lehyaric@ann.jussieu.fr// This file is part of Freefem++// // Freefem++ is free software; you can redistribute it and/or modify// it under the terms of the GNU Lesser General Public License as published by// the Free Software Foundation; either version 2.1 of the License, or// (at your option) any later version.// // Freefem++  is distributed in the hope that it will be useful,// but WITHOUT ANY WARRANTY; without even the implied warranty of// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the// GNU Lesser General Public License for more details.// // You should have received a copy of the GNU Lesser General Public License// along with Freefem++; if not, write to the Free Software// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA// from:// Antoine Le Hyaric - LJLL Paris 6 - lehyaric@ann.jussieu.fr - 21/10/04//  simplify by F. Hecht// Antoine Le Hyaric - LJLL Paris 6 - hect@ann.jussieu.fr - 22/11/08#ifndef FFTHREADS_HPP#define FFTHREADS_HPP#include "mode_open.hpp"#include <string>using namespace std;#ifdef __MINGW32__#include <windows.h>#else#include <pthread.h>#endif// Just check that we are in a known environment (otherwise it may be// difficult to recognise that the simple cause is an ifdef problem).class Thread{public:#ifdef __MINGW32__#define THREADFUNC(f,parm) unsigned int (__stdcall f)(Thread::Parm parm)  typedef LPVOID Parm;  typedef HANDLE Id;#else#define THREADFUNC(f,parm) void* f(Thread::Parm parm)  typedef void* Parm;  typedef pthread_t Id;#endif  // Mingw is a little puzzled if there are no brackets around  // __stdcall  static Id Start(THREADFUNC(f,),Parm p);  static void Wait(Id tid);  static void Exit(); // From inside the thread  static void Kill(Id tid);  static Id Current();}; #endif // THREADS_HPP

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -