wake-0 / fhvOS

This repository contains an os for the arm cortex a8 in combination with beaglebone.
GNU General Public License v2.0
7 stars 1 forks source link

[ProcessManager] Implement function which waits until a process finishes #79

Closed ghost closed 9 years ago

wake-0 commented 9 years ago

See bug #74 File Manager.

trylimits commented 9 years ago

Concept for that should be discussed in more detail.

trylimits commented 9 years ago

Above commit implements the functionality to start a process in blocking/non-blocking mode.

Examples:

# hello &                      // Starts in non-blocking mode

# hello                        // Starts in blocking mode
trylimits commented 9 years ago

Further discussion of the concept and/or implementation in Bug #74