version 1.15, 2001/12/25 02:39:04 |
version 1.18, 2003/12/09 03:07:45 |
|
|
* DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE, |
* DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE, |
* PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE. |
* PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE. |
* |
* |
* $OpenXM: OpenXM_contrib2/asir2000/include/ox.h,v 1.14 2001/12/21 08:23:12 noro Exp $ |
* $OpenXM: OpenXM_contrib2/asir2000/include/ox.h,v 1.17 2003/01/28 08:38:58 noro Exp $ |
*/ |
*/ |
#include "com.h" |
#include "com.h" |
|
|
|
|
#define SM_dupErrors 276 |
#define SM_dupErrors 276 |
#define SM_pushCMOtag 277 |
#define SM_pushCMOtag 277 |
|
|
|
#define SM_set_rank_102 278 |
|
#define SM_tcp_accept_102 279 |
|
#define SM_tcp_connect_102 280 |
|
#define SM_reset_102 281 |
|
|
#define SM_nop 300 |
#define SM_nop 300 |
|
|
#define SM_control_kill 1024 |
#define SM_control_kill 1024 |
Line 159 typedef FILE *ox_stream; |
|
Line 164 typedef FILE *ox_stream; |
|
--->FIXIT |
--->FIXIT |
#endif |
#endif |
|
|
extern JMP_BUF environnement; |
/* environement is defined in libpari.a */ |
|
extern jmp_buf environnement; |
|
|
extern JMP_BUF main_env; |
extern JMP_BUF main_env; |
|
|
Line 168 extern int ox_do_copy, ox_do_count, ox_count_length; |
|
Line 174 extern int ox_do_copy, ox_do_count, ox_count_length; |
|
extern char *ox_copy_bptr; |
extern char *ox_copy_bptr; |
|
|
extern struct IOFP iofp[]; |
extern struct IOFP iofp[]; |
|
extern struct IOFP iofp_102[]; |
|
|
extern char *parse_strp; |
extern char *parse_strp; |
|
|
|
#if 0 |
#define LBUFSIZ BUFSIZ*10 |
#define LBUFSIZ BUFSIZ*10 |
|
#else |
|
#define LBUFSIZ BUFSIZ |
|
#endif |
|
|
/* prototypes */ |
/* prototypes */ |
|
|
Line 205 int cmo_tag(Obj obj,int *tag); |
|
Line 216 int cmo_tag(Obj obj,int *tag); |
|
void write_cmo(FILE *s,Obj obj); |
void write_cmo(FILE *s,Obj obj); |
int valid_as_cmo(Obj obj); |
int valid_as_cmo(Obj obj); |
void ox_flush_stream_force(int s); |
void ox_flush_stream_force(int s); |
|
void ox_flush_stream_force_102(int s); |
void ox_flush_stream(int s); |
void ox_flush_stream(int s); |
|
void ox_flush_stream_102(int s); |
int ox_check_cmo_dp(int s, DP p); |
int ox_check_cmo_dp(int s, DP p); |
int ox_check_cmo_p(int s, P p); |
int ox_check_cmo_p(int s, P p); |
void ox_get_serverinfo(int s, LIST *rp); |
void ox_get_serverinfo(int s, LIST *rp); |
int ox_check_cmo(int s, Obj obj); |
int ox_check_cmo(int s, Obj obj); |
void ox_write_cmo(int s, Obj obj); |
void ox_write_cmo(int s, Obj obj); |
|
void ox_write_cmo_102(int s, Obj obj); |
void ox_write_int(int s, int n); |
void ox_write_int(int s, int n); |
|
void ox_write_int_102(int s, int n); |
void ox_read_local(int s, Obj *rp); |
void ox_read_local(int s, Obj *rp); |
|
void ox_read_local_102(int s, Obj *rp); |
void ox_read_cmo(int s, Obj *rp); |
void ox_read_cmo(int s, Obj *rp); |
|
void ox_read_cmo_102(int s, Obj *rp); |
void ox_read_int(int s, int *n); |
void ox_read_int(int s, int *n); |
|
void ox_read_int_102(int s, int *n); |
void ox_get_result(int s,Obj *rp); |
void ox_get_result(int s,Obj *rp); |
unsigned int ox_recv(int s, int *id, Obj *p); |
unsigned int ox_recv(int s, int *id, Obj *p); |
void ox_send_local_ring(int s,VL vl); |
void ox_send_local_ring(int s,VL vl); |