File: exec.h

package info (click to toggle)
epic5 3.0.3-1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 5,328 kB
  • sloc: ansic: 75,810; makefile: 648; ruby: 227; python: 215; sh: 78; perl: 13
file content (20 lines) | stat: -rw-r--r-- 491 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 * exec.h: header for exec.c 
 *
 * Copyright 1990 Michael Sandrof
 * Copyright 1997 EPIC Software Labs
 * See the Copyright file for license information
 */

#ifndef __exec_h__
#define	__exec_h__

	BUILT_IN_COMMAND(execcmd);
	int	get_child_exit		(pid_t);
	void	clean_up_processes	(void);
	int	text_to_process		(const char *, const char *, int);
	void	add_process_wait	(const char *, const char *);
	int	is_valid_process	(const char *);
	char *	execctl			(char *);

#endif /* _EXEC_H_ */