Return to system_call.ads CVS log | Up to [local] / OpenXM_contrib / PHC / Ada / System |
1.1 maekawa 1: package System_Call is 2: 3: -- DESCRIPTION : 4: -- This package provides a routine to call UNIX shell commands. 5: 6: procedure Call ( Command: in string ); 7: 8: -- DESCRIPTION : 9: -- Command is passed to and executed by the operating system. 10: 11: System_Error: exception; -- failure to execute Command properly 12: 13: end System_Call;