page.h, process.h, rlimit.h, syscall.h, time.h, timer.h copyright

This commit is contained in:
Yuji Saeki
2013-11-14 17:34:30 +09:00
parent 821396be7b
commit 506caa7e7f
6 changed files with 71 additions and 0 deletions

View File

@ -1,3 +1,15 @@
/**
* \file page.h
* License details are found in the file LICENSE.
* \brief
* Structures and functions of memory page
* \author Taku Shimosawa <shimosawa@is.s.u-tokyo.ac.jp> \par
* Copyright (C) 2011 - 2012 Taku Shimosawa
*/
/*
* HISTORY
*/
#ifndef __HEADER_PAGE_H
#define __HEADER_PAGE_H

View File

@ -1,3 +1,15 @@
/**
* \file process.h
* License details are found in the file LICENSE.
* \brief
* Structures of process and virtual memory management
* \author Taku Shimosawa <shimosawa@is.s.u-tokyo.ac.jp> \par
* Copyright (C) 2011 - 2012 Taku Shimosawa
*/
/*
* HISTORY
*/
#ifndef HEADER_PROCESS_H
#define HEADER_PROCESS_H

View File

@ -1,3 +1,14 @@
/**
* \file rlimit.h
* License details are found in the file LICENSE.
* \brief
* Kinds of resource limit
* \author Taku Shimosawa <shimosawa@is.s.u-tokyo.ac.jp> \par
* Copyright (C) 2011 - 2012 Taku Shimosawa
*/
/*
* HISTORY
*/
#ifndef __RLIMIT_H
#define __RLIMIT_H

View File

@ -1,3 +1,15 @@
/**
* \file syscall.h
* License details are found in the file LICENSE.
* \brief
* Structures and macros for system call on McKernel
* \author Taku Shimosawa <shimosawa@is.s.u-tokyo.ac.jp> \par
* Copyright (C) 2011 - 2012 Taku Shimosawa
*/
/*
* HISTORY
*/
#ifndef __HEADER_SYSCALL_H
#define __HEADER_SYSCALL_H

View File

@ -1,3 +1,15 @@
/**
* \file time.h
* License details are found in the file LICENSE.
* \brief
* Format of time variables
* \author Taku Shimosawa <shimosawa@is.s.u-tokyo.ac.jp> \par
* Copyright (C) 2011 - 2012 Taku Shimosawa
*/
/*
* HISTORY
*/
/*
* time.h:
*

View File

@ -1,3 +1,15 @@
/**
* \file timer.h
* License details are found in the file LICENSE.
* \brief
* Structure and functions of timer
* \author Taku Shimosawa <shimosawa@is.s.u-tokyo.ac.jp> \par
* Copyright (C) 2011 - 2012 Taku Shimosawa
*/
/*
* HISTORY
*/
#include <types.h>
#include <kmsg.h>
#include <ihk/cpu.h>