File: pfqlib_priv.h

package info (click to toggle)
pfqueue 0.5.3-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 1,400 kB
  • ctags: 595
  • sloc: sh: 8,964; ansic: 3,904; makefile: 80
file content (29 lines) | stat: -rw-r--r-- 368 bytes parent folder | download
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

#ifndef __PFQLIB_PRIV_H
#define __PFQLIB_PRIV_H

#include <pthread.h>
#include <sys/stat.h>

#define BUF_SIZE	250	// Strings buffer size

#ifndef TRUE
#define TRUE		1
#endif

#ifndef FALSE
#define FALSE		0
#endif

#ifndef NULL
#define NULL		0
#endif

struct stat foostat;

pthread_t	queue_fill_thread_t;
pthread_mutex_t	queue_fill_mutex;

int		dig_lastqueue;

#endif