From fa325e9b42b0bdfb48857d1958d9fb7ceac55151 Mon Sep 17 00:00:00 2001 From: Dan Cross Date: Fri, 10 Jan 2020 14:44:21 +0000 Subject: Trivial changes: whitespace and modes. Remote whitespace at the ends of lines. Remove blank lines from the ends of files. Change modes on source files so that they are not executable. Signed-off-by: Dan Cross --- src/libmach/Linux.c | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'src/libmach/Linux.c') diff --git a/src/libmach/Linux.c b/src/libmach/Linux.c index 005d6b38..30b40bbf 100644 --- a/src/libmach/Linux.c +++ b/src/libmach/Linux.c @@ -1,6 +1,6 @@ /* * process interface for Linux. - * + * * Uses ptrace for registers and data, * /proc for some process status. * There's not much point to worrying about @@ -59,7 +59,7 @@ ptraceattach(int pid) werrstr("ptrace attach %d: %r", pid); return -1; } - + if(ctlproc(pid, "waitstop") < 0){ fprint(2, "waitstop: %r"); ptrace(PTRACE_DETACH, pid, 0, 0); @@ -79,7 +79,7 @@ unmapproc(Map *map) for(i=0; inseg; i++) while(inseg && map->seg[i].pid){ map->nseg--; - memmove(&map->seg[i], &map->seg[i+1], + memmove(&map->seg[i], &map->seg[i+1], (map->nseg-i)*sizeof(map->seg[0])); } } @@ -272,7 +272,7 @@ isstopped(int pid) return *p == 'T'; } -/* /proc/pid/stat contains +/* /proc/pid/stat contains pid command in parens 0. state @@ -456,4 +456,3 @@ proctextfile(int pid) return pbuf; return nil; } - -- cgit v1.2.3