#include "BOOL.h"


Go to the source code of this file.
Functions | |
| int | putCommandInScilabQueue (char *command) |
| int | requestScilabExec (char *command) |
| int | interruptScilab (void) |
| int interruptScilab | ( | void | ) |
Definition at line 35 of file InterpreterManagement.c.
References C2F(), and sigbas().
Referenced by Java_org_scilab_modules_action_1binding_InterpreterManagementJNI_interruptScilab().


| int putCommandInScilabQueue | ( | char * | command | ) |
| command | the command to execute |
Definition at line 19 of file InterpreterManagement.c.
References StoreCommand().
Referenced by Java_org_scilab_modules_action_1binding_InterpreterManagementJNI_putCommandInScilabQueue().
00020 { 00021 return StoreCommand(command); 00022 }


| int requestScilabExec | ( | char * | command | ) |
Put a command in Scilab command queue so that Scilab executes it. The command is executed as soon as possible and may not be interrupted by another one. WARNING : if the command is taking some time, scilab will not do anything else before the command returns. The command is displayed in Scilab Window
| command | the command to execute |
Definition at line 30 of file InterpreterManagement.c.
References StoreCommandWithFlag().
Referenced by Java_org_scilab_modules_action_1binding_InterpreterManagementJNI_requestScilabExec().
00031 { 00032 return StoreCommandWithFlag(command, 1); 00033 }


1.5.5