add copyright notice to the following files,
mckernel/lib/include/*.h mckernel/arch/x86/elfboot/* mckernel/arch/x86/kboot/main.c mckernel/arch/x86/kernel/* mckernel/lib/page_alloc.c mckernel/lib/string.c mckernel/lib/include/ihk/* except mckernel/arch/x86/kernel/include/signal.h mckernel/arch/x86/tools/mcreboot-attached-mic.sh.in mckernel/arch/x86/kernel/include/syscall_list.h mckernel/arch/x86/kernel/syscall.c .
This commit is contained in:
@ -1,3 +1,12 @@
|
||||
/**
|
||||
* \file cpu.h
|
||||
* License details are found in the file LICENSE.
|
||||
* \brief
|
||||
* Declare types and functions to control CPU.
|
||||
* \author Taku Shimosawa <shimosawa@is.s.u-tokyo.ac.jp> \par
|
||||
* Copyright (C) 2011 - 2012 Taku Shimosawa
|
||||
*/
|
||||
|
||||
#ifndef IHK_CPU_H
|
||||
#define IHK_CPU_H
|
||||
|
||||
|
||||
@ -1,3 +1,12 @@
|
||||
/**
|
||||
* \file debug.h
|
||||
* License details are found in the file LICENSE.
|
||||
* \brief
|
||||
* Declare types and functions to print debug message (kmsg).
|
||||
* \author Taku Shimosawa <shimosawa@is.s.u-tokyo.ac.jp> \par
|
||||
* Copyright (C) 2011 - 2012 Taku Shimosawa
|
||||
*/
|
||||
|
||||
#ifndef IHK_DEBUG_H
|
||||
#define IHK_DEBUG_H
|
||||
|
||||
|
||||
@ -1,3 +1,12 @@
|
||||
/**
|
||||
* \file dma.h
|
||||
* License details are found in the file LICENSE.
|
||||
* \brief
|
||||
* Declare types and functions for DMA.
|
||||
* \author Taku Shimosawa <shimosawa@is.s.u-tokyo.ac.jp> \par
|
||||
* Copyright (C) 2011 - 2012 Taku Shimosawa
|
||||
*/
|
||||
|
||||
#ifndef __HEADER_GENERIC_INCLUDE_DMA_H
|
||||
#define __HEADER_GENERIC_INCLUDE_DMA_H
|
||||
|
||||
|
||||
@ -1,3 +1,12 @@
|
||||
/**
|
||||
* \file lock.h
|
||||
* License details are found in the file LICENSE.
|
||||
* \brief
|
||||
* Declare functions implementing spin lock.
|
||||
* \author Taku Shimosawa <shimosawa@is.s.u-tokyo.ac.jp> \par
|
||||
* Copyright (C) 2011 - 2012 Taku Shimosawa
|
||||
*/
|
||||
|
||||
#ifndef __HEADER_GENERIC_IHK_LOCK
|
||||
#define __HEADER_GENERIC_IHK_LOCK
|
||||
|
||||
|
||||
@ -1,3 +1,12 @@
|
||||
/**
|
||||
* \file mm.h
|
||||
* License details are found in the file LICENSE.
|
||||
* \brief
|
||||
* Declare types and funcions for memory management.
|
||||
* \author Taku Shimosawa <shimosawa@is.s.u-tokyo.ac.jp> \par
|
||||
* Copyright (C) 2011 - 2012 Taku Shimosawa
|
||||
*/
|
||||
|
||||
#ifndef __HEADER_GENERIC_IHK_MM_H
|
||||
#define __HEADER_GENERIC_IHK_MM_H
|
||||
|
||||
|
||||
@ -1,3 +1,13 @@
|
||||
/**
|
||||
* \file page_alloc.h
|
||||
* License details are found in the file LICENSE.
|
||||
* \brief
|
||||
* Declare functions acquire physical pages and assign virtual addresses
|
||||
* to them.
|
||||
* \author Taku Shimosawa <shimosawa@is.s.u-tokyo.ac.jp> \par
|
||||
* Copyright (C) 2011 - 2012 Taku Shimosawa
|
||||
*/
|
||||
|
||||
#ifndef __HEADER_GENERIC_IHK_PAGE_ALLOC
|
||||
#define __HEADER_GENERIC_IHK_PAGE_ALLOC
|
||||
|
||||
|
||||
@ -1,3 +1,12 @@
|
||||
/**
|
||||
* \file perfctr.h
|
||||
* License details are found in the file LICENSE.
|
||||
* \brief
|
||||
* Declare type and functions to manipulate performance counters.
|
||||
* \author Taku Shimosawa <shimosawa@is.s.u-tokyo.ac.jp> \par
|
||||
* Copyright (C) 2011 - 2012 Taku Shimosawa
|
||||
*/
|
||||
|
||||
#ifndef HEADER_GENERIC_IHK_PERFCTR_H
|
||||
#define HEADER_GENERIC_IHK_PERFCTR_H
|
||||
|
||||
|
||||
@ -1,3 +1,12 @@
|
||||
/**
|
||||
* \file limits.h
|
||||
* License details are found in the file LICENSE.
|
||||
* \brief
|
||||
* Define max and min of 32-bit integer.
|
||||
* \author Taku Shimosawa <shimosawa@is.s.u-tokyo.ac.jp> \par
|
||||
* Copyright (C) 2011 - 2012 Taku Shimosawa
|
||||
*/
|
||||
|
||||
#ifndef __HEADER_LIMITS
|
||||
#define __HEADER_LIMITS
|
||||
|
||||
|
||||
@ -1,3 +1,12 @@
|
||||
/**
|
||||
* \file memory.h
|
||||
* License details are found in the file LICENSE.
|
||||
* \brief
|
||||
* Convert virtual address from/to physical address.
|
||||
* \author Taku Shimosawa <shimosawa@is.s.u-tokyo.ac.jp> \par
|
||||
* Copyright (C) 2011 - 2012 Taku Shimosawa
|
||||
*/
|
||||
|
||||
#ifndef __HEADER_GENERIC_MEMORY_H
|
||||
#define __HEADER_GENERIC_MEMORY_H
|
||||
|
||||
|
||||
@ -1,3 +1,12 @@
|
||||
/**
|
||||
* \file string.h
|
||||
* License details are found in the file LICENSE.
|
||||
* \brief
|
||||
* Declare string manipulation functions.
|
||||
* \author Taku Shimosawa <shimosawa@is.s.u-tokyo.ac.jp> \par
|
||||
* Copyright (C) 2011 - 2012 Taku Shimosawa
|
||||
*/
|
||||
|
||||
#ifndef __STRING_H
|
||||
#define __STRING_H
|
||||
|
||||
|
||||
@ -1,3 +1,12 @@
|
||||
/**
|
||||
* \file types.h
|
||||
* License details are found in the file LICENSE.
|
||||
* \brief
|
||||
* typedef stdint.h like integer types
|
||||
* \author Taku Shimosawa <shimosawa@is.s.u-tokyo.ac.jp> \par
|
||||
* Copyright (C) 2011 - 2012 Taku Shimosawa
|
||||
*/
|
||||
|
||||
#ifndef TYPES_H
|
||||
#define TYPES_H
|
||||
|
||||
|
||||
Reference in New Issue
Block a user