![]() |
EVE 1.0
|
#include <stdio.h>#include <app_util_platform.h>#include <nrf_nvic.h>#include <core/pm.h>#include "sys/process.h"#include "sys/arg.h"
Go to the source code of this file.
Functions | |
| process_event_t | process_alloc_event (void) |
| Allocate a global event number. More... | |
| void | process_start (struct process *p, const char *arg) |
| void | process_exit (struct process *p) |
| Cause a process to exit. More... | |
| void | process_init (void) |
| Initialize the process module. More... | |
| int | process_run (void) |
| int | process_nevents (void) |
| int | process_post (struct process *p, process_event_t ev, process_data_t data) |
| void | process_post_synch (struct process *p, process_event_t ev, process_data_t data) |
| int | process_abort_event (struct process *p, process_event_t ev, void **pdata) |
| void | process_poll (struct process *p) |
| int | process_is_running (struct process *p) |
Implementation of the Contiki process kernel.
Definition in file process.c.