Lines Matching full:application
10 and generates interrupts with pointers to this data. The application needs
21 - Show how application-specific system calls are defined
22 - Show IPC between ISR and application (using ``k_msgq``) and
23 application-to-application IPC (using ``k_queue``)
24 - Show how to create application-specific system calls
26 In this example, we have an Application A whose job is to talk to the
28 Application B.
30 Application B simply processes the data. Let's pretend this data is
31 untrusted and possibly malicious, so Application B is sandboxed from
43 monitored by application B.
44 - Application B processing thread waits on new items in the queue. It
47 - Application A writeback thread monitors the outgoing data queue for
51 We also demonstrate application-defined system calls, in the form of