MOS Source Code
|
#include "mos/filesystem/dentry.h"
#include "mos/filesystem/vfs.h"
#include "mos/mm/mm.h"
#include "mos/tasks/schedule.h"
#include "mos/tasks/signal.h"
#include <mos/lib/structures/hashmap.h>
#include <mos/lib/structures/list.h>
#include <mos/lib/structures/stack.h>
#include <mos/lib/sync/spinlock.h>
#include <mos/mm/cow.h>
#include <mos/mm/paging/paging.h>
#include <mos/mos_global.h>
#include <mos/platform/platform.h>
#include <mos/syslog/printk.h>
#include <mos/tasks/process.h>
#include <mos/tasks/task_types.h>
#include <mos/tasks/thread.h>
#include <mos_stdlib.h>
#include <mos_string.h>
Go to the source code of this file.
Functions | |
process_t * | process_do_fork (process_t *parent) |
Variables | |
const char * | vmap_type_str [] |
|
extern |
Definition at line 44 of file process.c.
Referenced by process_do_fork(), process_dump_mmaps(), and process_sysfs_vmap_stat().