-
Notifications
You must be signed in to change notification settings - Fork 2
/
gcthrd.h
154 lines (103 loc) · 2.55 KB
/
gcthrd.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
/*
Copyright (C) 2018 BrerDawg
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
//gcthrd.h
//v1.01 07-01-12
#ifndef gcthrd_h
#define gcthrd_h
#include <stdio.h>
#include <string>
#include <iostream>
#include <fstream>
#include <string>
#include <time.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
using namespace std;
//#define _LARGE_FILES
#define _FILE_OFFSET_BITS 64 //large file handling
//windows code
#ifdef compile_for_windows
#include <windows.h>
#include <process.h>
#include <assert.h>
#include <stdio.h>
#include <fcntl.h>
#include <io.h>
#include <iostream>
#include <fstream>
#include <conio.h>
#include <shlobj.h>
#include <objbase.h>
#endif
//linux code
#ifndef compile_for_windows
#include <dirent.h>
#include <errno.h>
#include <sys/wait.h>
#include <sys/stat.h>
#include <langinfo.h>
#endif
#include <FL/Fl_Text_Editor.H>
#include <FL/Fl_Text_Buffer.H>
#include "GCProfile.h"
#include "gclog.h"
struct wkfe_thread_tag
{
bool kill;
bool finished;
//int pause;
};
class gcthrd
{
private:
void (*p_callback)( void *args );
void *args;
bool use_mutex;
//linux code
#ifndef compile_for_windows
pthread_t thread_id;
pthread_mutex_t mutex1;
static void* thread_linux( void* arg );
#endif
//windows code
#ifdef compile_for_windows
DWORD WINAPI wkfe_thread_win(void* lpData);
HANDLE h_mutex1;
PROCESS_INFORMATION processInformation;
static DWORD WINAPI thread_win( void* arg );
#endif
public:
bool thrd_dbg;
wkfe_thread_tag thrd;
gclog *logr;
int pr;
string obj_name;
public:
gcthrd( );
~gcthrd( );
void set_name( string s );
void set_thrd_callback( void (*p_cb)( void* ), void *args_in );
void set_log_ptr( int priority_in, gclog *logr_in );
bool create_thread( );
bool destroy_thread( );
bool wait_till_thread_destroyed( int timeout_ms );
double time_passed( unsigned long long int start );
bool create_mutex( );
bool destroy_mutex( );
bool lock_mutex( );
bool unlock_mutex( );
};
#endif