| name | NULL |
|---|---|
| module | mod_null |
| platforms | posix |
| inst() args | none |
| get function | Always returns 0. |
| get() args | none |
| set function | nothing. |
| name | ALIVE |
|---|---|
| module | mod_alive |
| platforms | posix |
| inst() args | none |
| get function | Returns a 0 to signify that the process does not exist and non-zero to signify that it does. |
| get() args | none |
| set function | nothing. |
| name | CPU |
|---|---|
| module | mod_cpu |
| platforms | nto |
| inst() args | none |
| get function | Return that percentage of cpu usage used by the process (or whole system, if pid is 0) multiplied by 1000. |
| get() args | none |
| set function | nothing. |
| name | FD |
|---|---|
| module | mod_fd |
| platforms | nto |
| inst() args | none |
| get function | Returns number of file descriptors used by the process(or whole system, if pid is 0. not done yet) |
| get() args | none |
| set function | nothing. |
| name | GETPIDBYNAME |
|---|---|
| module | mod_getpidbyname |
| platforms | nto |
| inst() args |
|
| get function | Returns that pid of the first process that matches the name of the string given on instantiation. 0 if none exist. |
| get() args | none |
| set function | nothing. |
| name | KILL |
|---|---|
| module | mod_kill |
| platforms | posix |
| inst() args |
|
| get function | Sends signal number to the process. Returns errno from signal(). |
| get() args | none |
| set function | nothing. |
| name | LOG |
|---|---|
| module | mod_log |
| platforms | posix |
| inst() args |
|
| get function | Records a log message. |
| get() args |
|
| set function | nothing |
| name | MAXMEM |
|---|---|
| module | mod_maxmem |
| platforms | nto |
| inst() args | none |
| get function | Returns the total amount of memory in the system(in bytes.) |
| get() args | none |
| set function | nothing. |
| name | MEM |
|---|---|
| module | mod_mem |
| platforms | nto |
| inst() args |
|
| get function | Return the amount of memory in bytes used by the process or system. |
| get() args | none |
| set function | nothing. |
| name | VAR |
|---|---|
| module | mod_var |
| platforms | posix |
| inst() args |
|
| get function | Return value stored in variable. |
| get() args | none |
| set function | Sets value of variable. |
| name | EXIT |
|---|---|
| module | mod_exit |
| platforms | posix |
| inst() args | none. |
| get function | Used for testing. Immediately exit()'s the program. |
| get() args |
|
| set function | nothing. |
| name | SH |
|---|---|
| module | mod_sh |
| platforms | posix |
| inst() args |
|
| get function | Starts a shell with the arguement given. Returns the pid of the shell or if the argument begins with `exec' the pid of the program exec'd. |
| get() args |
|
| set function | nothing. |
| note | This will not work with QNX Neutrino's uesh. |
| name | EXEC |
|---|---|
| module | mod_exec |
| platforms | posix |
| inst() args | none |
| get function | Fork()'s and exec()'s the program. No arguements are allows. This is a very special purpose nebuloid and is rarely useful, but it does allow you to execute programs without a shell. Returns the pid of the process. |
| get() args |
|
| set function | nothing. |