1 /* *********************************************************** 2 * * 3 * Copyright, (C) Honeywell Bull Inc., 1987 * 4 * * 5 * Copyright, (C) Honeywell Information Systems Inc., 1986 * 6 * * 7 *********************************************************** */ 8 9 /* HISTORY COMMENTS: 10 1) change(86-07-07,Westcott), approve(87-07-13,MCR7580), 11 audit(87-07-13,Leskiw), install(87-08-07,MR12.1-1072): 12 Created. 13 END HISTORY COMMENTS */ 14 15 /* : PROCEDURE FUNCTION (i_execap) 16 17 Software interrupt handler for execap user call. 18 */ 19 20 #include <stdio.h> 21 #include <ws.h> 22 #include <ws_error.h> 23 #include <ws_dcls.h> 24 25 i_execap (p_param, p_length) 26 27 struct xcap_struc *p_param; /* Execap paramter structure */ 28 int p_length; /* Length of structure */ 29 { 30 return (send_i_mess (&p_param->system, p_length, NULL, 0)); 31 } 32 ^Z