From 000bba8cb1090968dd48cb05589d16c8ac697293 Mon Sep 17 00:00:00 2001 From: "bernard.xiong" Date: Sun, 21 Mar 2010 23:49:57 +0000 Subject: [PATCH] add license file header. git-svn-id: https://rt-thread.googlecode.com/svn/trunk@523 bbd45198-f89e-11dd-88c7-29a3b14d5316 --- finsh/finsh.h | 13 +++++++++++++ finsh/finsh_compiler.c | 13 +++++++++++++ finsh/finsh_error.c | 13 +++++++++++++ finsh/finsh_error.h | 13 +++++++++++++ finsh/finsh_heap.c | 13 +++++++++++++ finsh/finsh_heap.h | 13 +++++++++++++ finsh/finsh_init.c | 13 +++++++++++++ finsh/finsh_node.c | 13 +++++++++++++ finsh/finsh_node.h | 13 +++++++++++++ finsh/finsh_ops.c | 13 +++++++++++++ finsh/finsh_ops.h | 13 +++++++++++++ finsh/finsh_parser.c | 13 +++++++++++++ finsh/finsh_parser.h | 13 +++++++++++++ finsh/finsh_token.c | 13 +++++++++++++ finsh/finsh_token.h | 13 +++++++++++++ finsh/finsh_var.c | 13 +++++++++++++ finsh/finsh_var.h | 13 +++++++++++++ finsh/finsh_vm.c | 13 +++++++++++++ finsh/finsh_vm.h | 13 +++++++++++++ finsh/symbol.c | 15 ++++++++++++++- 20 files changed, 261 insertions(+), 1 deletion(-) diff --git a/finsh/finsh.h b/finsh/finsh.h index f499016b9b..af41b50c6c 100644 --- a/finsh/finsh.h +++ b/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__ diff --git a/finsh/finsh_compiler.c b/finsh/finsh_compiler.c index b440f0fa4e..3ffdf8daec 100644 --- a/finsh/finsh_compiler.c +++ b/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 #include "finsh_node.h" diff --git a/finsh/finsh_error.c b/finsh/finsh_error.c index e28223c732..c10c3c0092 100644 --- a/finsh/finsh_error.c +++ b/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; diff --git a/finsh/finsh_error.h b/finsh/finsh_error.h index 725da02a9e..54bc0c32e1 100644 --- a/finsh/finsh_error.h +++ b/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__ diff --git a/finsh/finsh_heap.c b/finsh/finsh_heap.c index 2fc027896f..65449c414b 100644 --- a/finsh/finsh_heap.c +++ b/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 #include "finsh_var.h" diff --git a/finsh/finsh_heap.h b/finsh/finsh_heap.h index ac9df4f91a..73291b95f4 100644 --- a/finsh/finsh_heap.h +++ b/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 #ifndef __FINSH_HEAP_H__ diff --git a/finsh/finsh_init.c b/finsh/finsh_init.c index e0dce342d3..7fe13c6a4e 100644 --- a/finsh/finsh_init.c +++ b/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 #include "finsh_node.h" diff --git a/finsh/finsh_node.c b/finsh/finsh_node.c index b5d7461adc..32a890f264 100644 --- a/finsh/finsh_node.c +++ b/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 #include "finsh_node.h" diff --git a/finsh/finsh_node.h b/finsh/finsh_node.h index c26fdea8de..26abafdda6 100644 --- a/finsh/finsh_node.h +++ b/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__ diff --git a/finsh/finsh_ops.c b/finsh/finsh_ops.c index d201397083..a6efe865d1 100644 --- a/finsh/finsh_ops.c +++ b/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" diff --git a/finsh/finsh_ops.h b/finsh/finsh_ops.h index 1db5869518..dc8061fe16 100644 --- a/finsh/finsh_ops.h +++ b/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__ diff --git a/finsh/finsh_parser.c b/finsh/finsh_parser.c index 210ae5e04e..79b1492768 100644 --- a/finsh/finsh_parser.c +++ b/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 #include "finsh_token.h" diff --git a/finsh/finsh_parser.h b/finsh/finsh_parser.h index a8339062e7..ef47b71c38 100644 --- a/finsh/finsh_parser.h +++ b/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__ diff --git a/finsh/finsh_token.c b/finsh/finsh_token.c index 7002ca27f4..11f9dc6459 100644 --- a/finsh/finsh_token.c +++ b/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 #include "finsh_token.h" diff --git a/finsh/finsh_token.h b/finsh/finsh_token.h index 2224f003a1..a5eb775dde 100644 --- a/finsh/finsh_token.h +++ b/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__ diff --git a/finsh/finsh_var.c b/finsh/finsh_var.c index 5b6d6ac3ea..fc2fa27aea 100644 --- a/finsh/finsh_var.c +++ b/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 #include "finsh_var.h" diff --git a/finsh/finsh_var.h b/finsh/finsh_var.h index fa7df0ff1f..fe9a9c4de4 100644 --- a/finsh/finsh_var.h +++ b/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__ diff --git a/finsh/finsh_vm.c b/finsh/finsh_vm.c index e51e4de022..858459ac4a 100644 --- a/finsh/finsh_vm.c +++ b/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 #include "finsh_vm.h" diff --git a/finsh/finsh_vm.h b/finsh/finsh_vm.h index 1e453776ed..e4aeaa5530 100644 --- a/finsh/finsh_vm.h +++ b/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__ diff --git a/finsh/symbol.c b/finsh/symbol.c index a94ec64009..4d50a19470 100644 --- a/finsh/symbol.c +++ b/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}, }; -- GitLab