diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-12-07 00:52:58 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-12-07 00:52:58 +0000 |
commit | db12d1d733ab7de0c5f4cda261eb79fd334a4ed9 (patch) | |
tree | baed427ea76367f8561164995e41cfd34575e0c1 /procps | |
parent | 30e5cf8875f757581256a4ec4f6935d1cb28a0fb (diff) | |
download | busybox-w32-db12d1d733ab7de0c5f4cda261eb79fd334a4ed9.tar.gz busybox-w32-db12d1d733ab7de0c5f4cda261eb79fd334a4ed9.tar.bz2 busybox-w32-db12d1d733ab7de0c5f4cda261eb79fd334a4ed9.zip |
Fix forgotten license comments
Diffstat (limited to 'procps')
-rw-r--r-- | procps/fuser.c | 3 | ||||
-rw-r--r-- | procps/top.c | 11 |
2 files changed, 5 insertions, 9 deletions
diff --git a/procps/fuser.c b/procps/fuser.c index d2ac9ebfc..7297bfe66 100644 --- a/procps/fuser.c +++ b/procps/fuser.c | |||
@@ -4,8 +4,7 @@ | |||
4 | * | 4 | * |
5 | * Copyright 2004 Tony J. White | 5 | * Copyright 2004 Tony J. White |
6 | * | 6 | * |
7 | * May be distributed under the conditions of the | 7 | * Licensed under GPLv2, see file LICENSE in this tarball for details. |
8 | * GNU Library General Public License | ||
9 | */ | 8 | */ |
10 | 9 | ||
11 | #include "libbb.h" | 10 | #include "libbb.h" |
diff --git a/procps/top.c b/procps/top.c index c8a9539d6..8c58b909d 100644 --- a/procps/top.c +++ b/procps/top.c | |||
@@ -4,7 +4,7 @@ | |||
4 | * | 4 | * |
5 | * This is written specifically for the linux /proc/<PID>/stat(m) | 5 | * This is written specifically for the linux /proc/<PID>/stat(m) |
6 | * files format. | 6 | * files format. |
7 | 7 | * | |
8 | * This reads the PIDs of all processes and their status and shows | 8 | * This reads the PIDs of all processes and their status and shows |
9 | * the status of processes (first ones that fit to screen) at given | 9 | * the status of processes (first ones that fit to screen) at given |
10 | * intervals. | 10 | * intervals. |
@@ -22,16 +22,13 @@ | |||
22 | * - CPU where Process was last seen running | 22 | * - CPU where Process was last seen running |
23 | * (to see effect of sched_setaffinity() etc) | 23 | * (to see effect of sched_setaffinity() etc) |
24 | * - CPU Time Split (idle/IO/wait etc) PER CPU | 24 | * - CPU Time Split (idle/IO/wait etc) PER CPU |
25 | */ | 25 | * |
26 | |||
27 | /* Original code Copyrights */ | ||
28 | /* | ||
29 | * Copyright (c) 1992 Branko Lankester | 26 | * Copyright (c) 1992 Branko Lankester |
30 | * Copyright (c) 1992 Roger Binns | 27 | * Copyright (c) 1992 Roger Binns |
31 | * Copyright (C) 1994-1996 Charles L. Blake. | 28 | * Copyright (C) 1994-1996 Charles L. Blake. |
32 | * Copyright (C) 1992-1998 Michael K. Johnson | 29 | * Copyright (C) 1992-1998 Michael K. Johnson |
33 | * May be distributed under the conditions of the | 30 | * |
34 | * GNU Library General Public License | 31 | * Licensed under GPLv2, see file LICENSE in this tarball for details. |
35 | */ | 32 | */ |
36 | 33 | ||
37 | #include "libbb.h" | 34 | #include "libbb.h" |