File: process.h

package info (click to toggle)
conntrack 1%3A1.4.2-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie-kfreebsd
  • size: 2,948 kB
  • sloc: ansic: 17,370; sh: 11,494; yacc: 1,554; lex: 186; makefile: 94
file content (25 lines) | stat: -rw-r--r-- 527 bytes parent folder | download | duplicates (11)
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
#ifndef _PROCESS_H_
#define _PROCESS_H_

enum process_type {
	CTD_PROC_ANY,		/* any type */
	CTD_PROC_FLUSH,		/* flush process */
	CTD_PROC_COMMIT,	/* commit process */
	CTD_PROC_MAX
};

#define CTD_PROC_F_EXCL 	(1 << 0)  /* only one process at a time */

struct child_process {
	struct list_head	head;
	int			pid;
	int			type;
	void			(*cb)(void *data);
	void			*data;
};

int fork_process_new(int type, int flags, void (*cb)(void *data), void *data);
int fork_process_delete(int pid);
void fork_process_dump(int fd);

#endif