Ver código fonte

add license file header.

git-svn-id: https://rt-thread.googlecode.com/svn/trunk@523 bbd45198-f89e-11dd-88c7-29a3b14d5316
bernard.xiong 15 anos atrás
pai
commit
000bba8cb1

+ 13 - 0
finsh/finsh.h

@@ -1,3 +1,16 @@
+/*
+ * File      : finsh.h
+ * This file is part of RT-Thread RTOS
+ * COPYRIGHT (C) 2006 - 2010, RT-Thread Development Team
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rt-thread.org/license/LICENSE
+ *
+ * Change Logs:
+ * Date           Author       Notes
+ * 2010-03-22     Bernard      first version
+ */
 #ifndef __FINSH_H__
 #define __FINSH_H__
 

+ 13 - 0
finsh/finsh_compiler.c

@@ -1,3 +1,16 @@
+/*
+ * File      : finsh_compiler.c
+ * This file is part of RT-Thread RTOS
+ * COPYRIGHT (C) 2006 - 2010, RT-Thread Development Team
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rt-thread.org/license/LICENSE
+ *
+ * Change Logs:
+ * Date           Author       Notes
+ * 2010-03-22     Bernard      first version
+ */
 #include <finsh.h>
 
 #include "finsh_node.h"

+ 13 - 0
finsh/finsh_error.c

@@ -1,3 +1,16 @@
+/*
+ * File      : finsh_error.c
+ * This file is part of RT-Thread RTOS
+ * COPYRIGHT (C) 2006 - 2010, RT-Thread Development Team
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rt-thread.org/license/LICENSE
+ *
+ * Change Logs:
+ * Date           Author       Notes
+ * 2010-03-22     Bernard      first version
+ */
 #include "finsh_error.h"
 
 u_char global_errno;

+ 13 - 0
finsh/finsh_error.h

@@ -1,3 +1,16 @@
+/*
+ * File      : finsh_error.h
+ * This file is part of RT-Thread RTOS
+ * COPYRIGHT (C) 2006 - 2010, RT-Thread Development Team
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rt-thread.org/license/LICENSE
+ *
+ * Change Logs:
+ * Date           Author       Notes
+ * 2010-03-22     Bernard      first version
+ */
 #ifndef __FINSH_ERROR_H__
 #define __FINSH_ERROR_H__
 

+ 13 - 0
finsh/finsh_heap.c

@@ -1,3 +1,16 @@
+/*
+ * File      : finsh_heap.c
+ * This file is part of RT-Thread RTOS
+ * COPYRIGHT (C) 2006 - 2010, RT-Thread Development Team
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rt-thread.org/license/LICENSE
+ *
+ * Change Logs:
+ * Date           Author       Notes
+ * 2010-03-22     Bernard      first version
+ */
 #include <finsh.h>
 
 #include "finsh_var.h"

+ 13 - 0
finsh/finsh_heap.h

@@ -1,3 +1,16 @@
+/*
+ * File      : finsh_heap.h
+ * This file is part of RT-Thread RTOS
+ * COPYRIGHT (C) 2006 - 2010, RT-Thread Development Team
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rt-thread.org/license/LICENSE
+ *
+ * Change Logs:
+ * Date           Author       Notes
+ * 2010-03-22     Bernard      first version
+ */
 #include <finsh.h>
 
 #ifndef __FINSH_HEAP_H__

+ 13 - 0
finsh/finsh_init.c

@@ -1,3 +1,16 @@
+/*
+ * File      : finsh_init.c
+ * This file is part of RT-Thread RTOS
+ * COPYRIGHT (C) 2006 - 2010, RT-Thread Development Team
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rt-thread.org/license/LICENSE
+ *
+ * Change Logs:
+ * Date           Author       Notes
+ * 2010-03-22     Bernard      first version
+ */
 #include <finsh.h>
 
 #include "finsh_node.h"

+ 13 - 0
finsh/finsh_node.c

@@ -1,3 +1,16 @@
+/*
+ * File      : finsh_node.c
+ * This file is part of RT-Thread RTOS
+ * COPYRIGHT (C) 2006 - 2010, RT-Thread Development Team
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rt-thread.org/license/LICENSE
+ *
+ * Change Logs:
+ * Date           Author       Notes
+ * 2010-03-22     Bernard      first version
+ */
 #include <finsh.h>
 
 #include "finsh_node.h"

+ 13 - 0
finsh/finsh_node.h

@@ -1,3 +1,16 @@
+/*
+ * File      : finsh_node.h
+ * This file is part of RT-Thread RTOS
+ * COPYRIGHT (C) 2006 - 2010, RT-Thread Development Team
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rt-thread.org/license/LICENSE
+ *
+ * Change Logs:
+ * Date           Author       Notes
+ * 2010-03-22     Bernard      first version
+ */
 #ifndef __FINSH_NODE_H__
 #define __FINSH_NODE_H__
 

+ 13 - 0
finsh/finsh_ops.c

@@ -1,3 +1,16 @@
+/*
+ * File      : finsh_ops.c
+ * This file is part of RT-Thread RTOS
+ * COPYRIGHT (C) 2006 - 2010, RT-Thread Development Team
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rt-thread.org/license/LICENSE
+ *
+ * Change Logs:
+ * Date           Author       Notes
+ * 2010-03-22     Bernard      first version
+ */
 #include "finsh_ops.h"
 #include "finsh_vm.h"
 

+ 13 - 0
finsh/finsh_ops.h

@@ -1,3 +1,16 @@
+/*
+ * File      : finsh_ops.h
+ * This file is part of RT-Thread RTOS
+ * COPYRIGHT (C) 2006 - 2010, RT-Thread Development Team
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rt-thread.org/license/LICENSE
+ *
+ * Change Logs:
+ * Date           Author       Notes
+ * 2010-03-22     Bernard      first version
+ */
 #ifndef __FINSH_OP_H__
 #define __FINSH_OP_H__
 

+ 13 - 0
finsh/finsh_parser.c

@@ -1,3 +1,16 @@
+/*
+ * File      : finsh_parser.c
+ * This file is part of RT-Thread RTOS
+ * COPYRIGHT (C) 2006 - 2010, RT-Thread Development Team
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rt-thread.org/license/LICENSE
+ *
+ * Change Logs:
+ * Date           Author       Notes
+ * 2010-03-22     Bernard      first version
+ */
 #include <finsh.h>
 
 #include "finsh_token.h"

+ 13 - 0
finsh/finsh_parser.h

@@ -1,3 +1,16 @@
+/*
+ * File      : finsh_parser.h
+ * This file is part of RT-Thread RTOS
+ * COPYRIGHT (C) 2006 - 2010, RT-Thread Development Team
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rt-thread.org/license/LICENSE
+ *
+ * Change Logs:
+ * Date           Author       Notes
+ * 2010-03-22     Bernard      first version
+ */
 #ifndef __FINSH_PARSER_H__
 #define __FINSH_PARSER_H__
 

+ 13 - 0
finsh/finsh_token.c

@@ -1,3 +1,16 @@
+/*
+ * File      : finsh_token.c
+ * This file is part of RT-Thread RTOS
+ * COPYRIGHT (C) 2006 - 2010, RT-Thread Development Team
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rt-thread.org/license/LICENSE
+ *
+ * Change Logs:
+ * Date           Author       Notes
+ * 2010-03-22     Bernard      first version
+ */
 #include <finsh.h>
 
 #include "finsh_token.h"

+ 13 - 0
finsh/finsh_token.h

@@ -1,3 +1,16 @@
+/*
+ * File      : finsh_token.h
+ * This file is part of RT-Thread RTOS
+ * COPYRIGHT (C) 2006 - 2010, RT-Thread Development Team
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rt-thread.org/license/LICENSE
+ *
+ * Change Logs:
+ * Date           Author       Notes
+ * 2010-03-22     Bernard      first version
+ */
 #ifndef __FINSH_TOKEN_H__
 #define __FINSH_TOKEN_H__
 

+ 13 - 0
finsh/finsh_var.c

@@ -1,3 +1,16 @@
+/*
+ * File      : finsh_var.c
+ * This file is part of RT-Thread RTOS
+ * COPYRIGHT (C) 2006 - 2010, RT-Thread Development Team
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rt-thread.org/license/LICENSE
+ *
+ * Change Logs:
+ * Date           Author       Notes
+ * 2010-03-22     Bernard      first version
+ */
 #include <finsh.h>
 #include "finsh_var.h"
 

+ 13 - 0
finsh/finsh_var.h

@@ -1,3 +1,16 @@
+/*
+ * File      : finsh_var.h
+ * This file is part of RT-Thread RTOS
+ * COPYRIGHT (C) 2006 - 2010, RT-Thread Development Team
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rt-thread.org/license/LICENSE
+ *
+ * Change Logs:
+ * Date           Author       Notes
+ * 2010-03-22     Bernard      first version
+ */
 #ifndef __FINSH_VAR_H__
 #define __FINSH_VAR_H__
 

+ 13 - 0
finsh/finsh_vm.c

@@ -1,3 +1,16 @@
+/*
+ * File      : finsh_vm.c
+ * This file is part of RT-Thread RTOS
+ * COPYRIGHT (C) 2006 - 2010, RT-Thread Development Team
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rt-thread.org/license/LICENSE
+ *
+ * Change Logs:
+ * Date           Author       Notes
+ * 2010-03-22     Bernard      first version
+ */
 #include <finsh.h>
 
 #include "finsh_vm.h"

+ 13 - 0
finsh/finsh_vm.h

@@ -1,3 +1,16 @@
+/*
+ * File      : finsh_vm.h
+ * This file is part of RT-Thread RTOS
+ * COPYRIGHT (C) 2006 - 2010, RT-Thread Development Team
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rt-thread.org/license/LICENSE
+ *
+ * Change Logs:
+ * Date           Author       Notes
+ * 2010-03-22     Bernard      first version
+ */
 #ifndef __FINSH_VM_H__
 #define __FINSH_VM_H__
 

+ 14 - 1
finsh/symbol.c

@@ -1,3 +1,16 @@
+/*
+ * File      : symbol.c
+ * This file is part of RT-Thread RTOS
+ * COPYRIGHT (C) 2006 - 2010, RT-Thread Development Team
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rt-thread.org/license/LICENSE
+ *
+ * Change Logs:
+ * Date           Author       Notes
+ * 2010-03-22     Bernard      first version
+ */
 #include "finsh.h"
 
 long hello(void);
@@ -44,7 +57,7 @@ struct finsh_syscall _syscall_table[] =
 	{"list_mq", list_msgqueue},
 #endif
 #ifdef RT_USING_MEMPOOL
-	{"list_memp", list_mempool}, 
+	{"list_memp", list_mempool},
 #endif
 	{"list_timer", list_timer},
 };