Add skeleton main() function.
[inoclam.git] / monitor.h
blob00c2996e0f06e1bc69eef7eed85bca90ff7d6846
1 /*
2 * inoclam - Inotify+ClamAV virus scanner
3 * Copyright (C) 2007 Vermont Department of Taxes
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 * Contributor(s):
19 * Tom Cort <tom.cort@state.vt.us>
22 #ifndef __MONITOR_H
23 #define __MONITOR_H
25 /**
26 * initialize monitor variables
28 void monitor_init();
30 /**
31 * increments the thread count
33 void monitor_inc();
35 /**
36 * decrements the thread count
38 void monitor_dec();
40 /**
41 * waits until no threads are running
42 * blocks new threads from being created
44 void monitor_wait();
46 #endif