Skip to content

Commit 086e8c3

Browse files
committed
Add copyright and GPL v2 licence notice
Signed-off-by: Namhyung Kim <[email protected]>
1 parent f1cfb60 commit 086e8c3

File tree

10 files changed

+422
-0
lines changed

10 files changed

+422
-0
lines changed

COPYING

+339
Large diffs are not rendered by default.

cygprofile.c

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
/*
2+
* __cyg_profile_func_{enter,exit} routines for ftrace
3+
*
4+
* Copyright (C) 2014, LG Electronics, Namhyung Kim <[email protected]>
5+
*
6+
* Released under the GPL v2.
7+
*/
8+
19
#include <stdio.h>
210
#include <stdbool.h>
311
#include <pthread.h>

debug.c

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
/*
2+
* debug routines for ftrace
3+
*
4+
* Copyright (C) 2014, LG Electronics, Namhyung Kim <[email protected]>
5+
*
6+
* Released under the GPL v2.
7+
*/
8+
19
#include <stdio.h>
210
#include <stdarg.h>
311
#include <unistd.h>

ftrace.c

+19
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
/*
2+
* ftrace - Function Tracer
3+
*
4+
* Copyright (C) 2014 LG Electornics, Namhyung Kim <[email protected]>
5+
*
6+
* This program is free software; you can redistribute it and/or modify
7+
* it under the terms of the GNU General Public License as published by
8+
* the Free Software Foundation; version 2 of the License.
9+
*
10+
* This program is distributed in the hope that it will be useful,
11+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
* GNU General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU General Public License
16+
* along with this program; if not, write to the Free Software
17+
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18+
*/
19+
120
#include <stdio.h>
221
#include <stdlib.h>
322
#include <string.h>

info.c

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
/*
2+
* ftrace info command related routines
3+
*
4+
* Copyright (C) 2014, LG Electronics, Namhyung Kim <[email protected]>
5+
*
6+
* Released under the GPL v2.
7+
*/
8+
19
#include <stdio.h>
210
#include <unistd.h>
311
#include <string.h>

mcount.c

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
/*
2+
* mcount() handling routines for ftrace
3+
*
4+
* Copyright (C) 2014, LG Electronics, Namhyung Kim <[email protected]>
5+
*
6+
* Released under the GPL v2.
7+
*/
8+
19
#include <time.h>
210
#include <stdio.h>
311
#include <stdlib.h>

mcount.h

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
/*
2+
* data structures for handling mcount records
3+
*
4+
* Copyright (C) 2014, LG Electronics, Namhyung Kim <[email protected]>
5+
*
6+
* Released under the GPL v2.
7+
*/
8+
19
#ifndef FTRACE_MCOUNT_H
210
#define FTRACE_MCOUNT_H
311

symbol.c

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
/*
2+
* symbol management routines for ftrace
3+
*
4+
* Copyright (C) 2014, LG Electronics, Namhyung Kim <[email protected]>
5+
*
6+
* Released under the GPL v2.
7+
*/
8+
19
#include <stdio.h>
210
#include <stdlib.h>
311
#include <string.h>

symbol.h

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
/*
2+
* symbol management data structures for ftrace
3+
*
4+
* Copyright (C) 2014, LG Electronics, Namhyung Kim <[email protected]>
5+
*
6+
* Released under the GPL v2.
7+
*/
8+
19
#ifndef FTRACE_SYMBOL_H
210
#define FTRACE_SYMBOL_H
311

utils.h

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
/*
2+
* utiltily functions and macros for ftrace
3+
*
4+
* Copyright (C) 2014, LG Electronics, Namhyung Kim <[email protected]>
5+
*
6+
* Released under the GPL v2.
7+
*/
8+
19
#ifndef __FTRACE_UTILS_H__
210
#define __FTRACE_UTILS_H__
311

0 commit comments

Comments
 (0)