MALOC  0.1
psh.h
1 /*
2  * ***************************************************************************
3  * MALOC = < Minimal Abstraction Layer for Object-oriented C >
4  * Copyright (C) 1994--2006 Michael Holst
5  *
6  * This program is free software; you can redistribute it and/or modify it
7  * under the terms of the GNU General Public License as published by the
8  * Free Software Foundation; either version 2 of the License, or (at your
9  * option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
14  * See the GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License along
17  * with this program; if not, write to the Free Software Foundation, Inc.,
18  * 675 Mass Ave, Cambridge, MA 02139, USA.
19  *
20  * rcsid="$Id: psh.h,v 1.19 2006/06/03 07:22:30 mholst Exp $"
21  * ***************************************************************************
22  */
23 
24 /*
25  * ***************************************************************************
26  * File: psh.h < psh.c, ... >
27  *
28  * Purpose: Header file for a simple parallel extension of ALOC's VSH.
29  *
30  * Author: Michael Holst
31  * ***************************************************************************
32  */
33 
34 #ifndef _PSH_H_
35 #define _PSH_H_
36 
37 #include <maloc/maloc_base.h>
38 
39 #include <maloc/vsys.h>
40 #include <maloc/vsh.h>
41 #include <maloc/vmp.h>
42 
43 int Vsh_pshell(Vsh *thee, char *pPR, void *pthee,
44  int (*builtin)(void *thee, int argc, char **argv));
45 
46 Vio *Vsh_pioSetup(Vsh *thee, char *key);
47 void Vsh_pioCleanup(Vsh *thee, Vio **sock);
48 
49 #endif /* _PSH_H_ */
50 
Vsh
Definition: vsh.h:53
Vio
Definition: vio.h:77