1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- /*++
- Copyright (c) 2012 Minoca Corp.
- This file is licensed under the terms of the GNU General Public License
- version 3. Alternative licensing terms are available. Contact
- info@minocacorp.com for details. See the LICENSE file at the root of this
- project for complete licensing information.
- Module Name:
- Process/Thread Library
- Abstract:
- This library contains the process and thread library. It maintains the
- lifecycle of threads (units of execution) and processes (collections of
- threads in a shared address space).
- Author:
- Evan Green 6-Aug-2012
- Environment:
- Kernel
- --*/
- function build() {
- base_sources = [
- "env.c",
- "info.c",
- "init.c",
- "perm.c",
- "pgroups.c",
- "process.c",
- "psimag.c",
- "signals.c",
- "thread.c",
- "usrlock.c",
- "utimer.c"
- ];
- if ((arch == "armv7") || (arch == "armv6")) {
- arch_sources = [
- "armv7/psarch.c"
- ];
- } else if (arch == "x86") {
- arch_sources = [
- "x86/psarch.c"
- ];
- }
- lib = {
- "label": "ps",
- "inputs": base_sources + arch_sources,
- };
- entries = static_library(lib);
- return entries;
- }
- return build();
|