add copyrights
This commit is contained in:
@ -1,5 +1,13 @@
|
||||
/**
|
||||
* \file syscall_list.h
|
||||
* License details are found in the file LICENSE.
|
||||
* \brief
|
||||
* define system calls
|
||||
* \author Gou Nakamura <go.nakamura.yw@hitachi-solutions.com> \par
|
||||
* Copyright (C) 2013 Hitachi, Ltd.
|
||||
*/
|
||||
/*
|
||||
* [x86] syscall_list.h
|
||||
* HISTORY:
|
||||
*/
|
||||
|
||||
/*
|
||||
|
||||
@ -1,5 +1,17 @@
|
||||
/**
|
||||
* \file syscall.c
|
||||
* License details are found in the file LICENSE.
|
||||
* \brief
|
||||
* archtecture depended system call handlers
|
||||
* \author Gou Nakamura <go.nakamura.yw@hitachi-solutions.com> \par
|
||||
* Copyright (C) 2013 Hitachi, Ltd.
|
||||
* \author Masamichi Takagi <m-takagi@ab.jp.nec.com> \par
|
||||
* Copyright (C) 2013 NEC Corporation
|
||||
* \author Tomoki Shirasawa <tomoki.shirasawa.kk@hitachi-solutions.com> \par
|
||||
* Copyright (C) 2013 Hitachi, Ltd.
|
||||
*/
|
||||
/*
|
||||
* [x86] syscall.c
|
||||
* HISTORY:
|
||||
*/
|
||||
|
||||
#include <ihk/cpu.h>
|
||||
|
||||
@ -1,3 +1,15 @@
|
||||
/**
|
||||
* \file fileobj.c
|
||||
* License details are found in the file LICENSE.
|
||||
* \brief
|
||||
* file back-ended pager client
|
||||
* \author Gou Nakamura <go.nakamura.yw@hitachi-solutions.com> \par
|
||||
* Copyright (C) 2013 Hitachi, Ltd.
|
||||
*/
|
||||
/*
|
||||
* HISTORY:
|
||||
*/
|
||||
|
||||
#include <ihk/cpu.h>
|
||||
#include <ihk/debug.h>
|
||||
#include <ihk/lock.h>
|
||||
|
||||
@ -1,3 +1,21 @@
|
||||
/**
|
||||
* \file host.c
|
||||
* License details are found in the file LICENSE.
|
||||
* \brief
|
||||
* host call handlers
|
||||
* \author Taku Shimosawa <shimosawa@is.s.u-tokyo.ac.jp> \par
|
||||
* Copyright (C) 2011 - 2012 Taku Shimosawa
|
||||
* \author Balazs Gerofi <bgerofi@riken.jp> \par
|
||||
* Copyright (C) 2012 RIKEN AICS
|
||||
* \author Gou Nakamura <go.nakamura.yw@hitachi-solutions.com> \par
|
||||
* Copyright (C) 2013 Hitachi, Ltd.
|
||||
* \author Tomoki Shirasawa <tomoki.shirasawa.kk@hitachi-solutions.com> \par
|
||||
* Copyright (C) 2013 Hitachi, Ltd.
|
||||
*/
|
||||
/*
|
||||
* HISTORY:
|
||||
*/
|
||||
|
||||
#include <types.h>
|
||||
#include <kmsg.h>
|
||||
#include <ihk/cpu.h>
|
||||
|
||||
@ -1,3 +1,15 @@
|
||||
/**
|
||||
* \file memobj.h
|
||||
* License details are found in the file LICENSE.
|
||||
* \brief
|
||||
* defines and declares for memory object
|
||||
* \author Gou Nakamura <go.nakamura.yw@hitachi-solutions.com> \par
|
||||
* Copyright (C) 2013 Hitachi, Ltd.
|
||||
*/
|
||||
/*
|
||||
* HISTORY:
|
||||
*/
|
||||
|
||||
#ifndef HEADER_MEMOBJ_H
|
||||
#define HEADER_MEMOBJ_H
|
||||
|
||||
|
||||
@ -1,3 +1,15 @@
|
||||
/**
|
||||
* \file mman.h
|
||||
* License details are found in the file LICENSE.
|
||||
* \brief
|
||||
* memory management declarations
|
||||
* \author Gou Nakamura <go.nakamura.yw@hitachi-solutions.com> \par
|
||||
* Copyright (C) 2013 Hitachi, Ltd.
|
||||
*/
|
||||
/*
|
||||
* HISTORY:
|
||||
*/
|
||||
|
||||
#ifndef HEADER_MMAN_H
|
||||
#define HEADER_MMAN_H
|
||||
|
||||
|
||||
@ -1,3 +1,14 @@
|
||||
/**
|
||||
* \file pager.h
|
||||
* License details are found in the file LICENSE.
|
||||
* \brief
|
||||
* file back-ended pager declarations
|
||||
* \author Gou Nakamura <go.nakamura.yw@hitachi-solutions.com> \par
|
||||
* Copyright (C) 2013 Hitachi, Ltd.
|
||||
*/
|
||||
/*
|
||||
* HISTORY:
|
||||
*/
|
||||
#ifndef HEADER_PAGER_H
|
||||
#define HEADER_PAGER_H
|
||||
|
||||
|
||||
20
kernel/mem.c
20
kernel/mem.c
@ -1,3 +1,23 @@
|
||||
/**
|
||||
* \file mem.c
|
||||
* License details are found in the file LICENSE.
|
||||
* \brief
|
||||
* memory management
|
||||
* \author Taku Shimosawa <shimosawa@is.s.u-tokyo.ac.jp> \par
|
||||
* Copyright (C) 2011 - 2012 Taku Shimosawa
|
||||
* \author Balazs Gerofi <bgerofi@riken.jp> \par
|
||||
* Copyright (C) 2012 RIKEN AICS
|
||||
* \author Masamichi Takagi <m-takagi@ab.jp.nec.com> \par
|
||||
* Copyright (C) 2012 - 2013 NEC Corporation
|
||||
* \author Balazs Gerofi <bgerofi@is.s.u-tokyo.ac.jp> \par
|
||||
* Copyright (C) 2013 The University of Tokyo
|
||||
* \author Gou Nakamura <go.nakamura.yw@hitachi-solutions.com> \par
|
||||
* Copyright (C) 2013 Hitachi, Ltd.
|
||||
*/
|
||||
/*
|
||||
* HISTORY:
|
||||
*/
|
||||
|
||||
#include <kmsg.h>
|
||||
#include <kmalloc.h>
|
||||
#include <string.h>
|
||||
|
||||
@ -1,3 +1,25 @@
|
||||
/**
|
||||
* \file process.c
|
||||
* License details are found in the file LICENSE.
|
||||
* \brief
|
||||
* process, thread, and, virtual memory management
|
||||
* \author Taku Shimosawa <shimosawa@is.s.u-tokyo.ac.jp> \par
|
||||
* Copyright (C) 2011 - 2012 Taku Shimosawa
|
||||
* \author Balazs Gerofi <bgerofi@riken.jp> \par
|
||||
* Copyright (C) 2012 RIKEN AICS
|
||||
* \author Masamichi Takagi <m-takagi@ab.jp.nec.com> \par
|
||||
* Copyright (C) 2012 - 2013 NEC Corporation
|
||||
* \author Balazs Gerofi <bgerofi@is.s.u-tokyo.ac.jp> \par
|
||||
* Copyright (C) 2013 The University of Tokyo
|
||||
* \author Gou Nakamura <go.nakamura.yw@hitachi-solutions.com> \par
|
||||
* Copyright (C) 2013 Hitachi, Ltd.
|
||||
* \author Tomoki Shirasawa <tomoki.shirasawa.kk@hitachi-solutions.com> \par
|
||||
* Copyright (C) 2013 Hitachi, Ltd.
|
||||
*/
|
||||
/*
|
||||
* HISTORY:
|
||||
*/
|
||||
|
||||
#include <process.h>
|
||||
#include <string.h>
|
||||
#include <errno.h>
|
||||
|
||||
@ -1,3 +1,27 @@
|
||||
/**
|
||||
* \file syscall.c
|
||||
* License details are found in the file LICENSE.
|
||||
* \brief
|
||||
* system call handlers
|
||||
* \author Taku Shimosawa <shimosawa@is.s.u-tokyo.ac.jp> \par
|
||||
* Copyright (C) 2011 - 2012 Taku Shimosawa
|
||||
* \author Balazs Gerofi <bgerofi@riken.jp> \par
|
||||
* Copyright (C) 2012 RIKEN AICS
|
||||
* \author Masamichi Takagi <m-takagi@ab.jp.nec.com> \par
|
||||
* Copyright (C) 2012 - 2013 NEC Corporation
|
||||
* \author Min Si <msi@is.s.u-tokyo.ac.jp> \par
|
||||
* Copyright (C) 2012 Min Si
|
||||
* \author Balazs Gerofi <bgerofi@is.s.u-tokyo.ac.jp> \par
|
||||
* Copyright (C) 2013 The University of Tokyo
|
||||
* \author Gou Nakamura <go.nakamura.yw@hitachi-solutions.com> \par
|
||||
* Copyright (C) 2013 Hitachi, Ltd.
|
||||
* \author Tomoki Shirasawa <tomoki.shirasawa.kk@hitachi-solutions.com> \par
|
||||
* Copyright (C) 2013 Hitachi, Ltd.
|
||||
*/
|
||||
/*
|
||||
* HISTORY:
|
||||
*/
|
||||
|
||||
#include <types.h>
|
||||
#include <kmsg.h>
|
||||
#include <ihk/cpu.h>
|
||||
|
||||
Reference in New Issue
Block a user