~n3npq/lsb/distribution-checker

« back to all changes in this revision

Viewing changes to ptyshell/subshell.h

  • Committer: biga
  • Date: 2009-04-24 14:16:44 UTC
  • Revision ID: biga@spidey.linux-foundation.org-20090424141644-7evzd6mjocix7e68
init

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef SUBSHELL_H
 
2
#define SUBSHELL_H
 
3
 
 
4
#include <sys/types.h>
 
5
 
 
6
extern char * subshell_pidfile;
 
7
extern int input_fd;
 
8
extern int output_fd;
 
9
 
 
10
int spawn_subshell(uid_t user_id);
 
11
void subshell_close(void);
 
12
void subshell_relay_loop(void);
 
13
 
 
14
extern char ** environ;
 
15
 
 
16
#endif