diff options
author | Jean-Francois Brousseau <jfb@cvs.openbsd.org> | 2003-05-15 00:11:04 +0000 |
---|---|---|
committer | Jean-Francois Brousseau <jfb@cvs.openbsd.org> | 2003-05-15 00:11:04 +0000 |
commit | 2b3858819522fabfc71ff120528ea03aa6bb7a90 (patch) | |
tree | 70818260037349328c0a08260657f511aa49d95c /usr.bin/pmdb/pmdb.h | |
parent | 031bf042cd29fe4f15dd1dde093eff5c60e862a3 (diff) |
Get rid of read_from_pid() and write_to_pid(), they were
replaced by the more generic process_read() and process_write()
ok art@
Diffstat (limited to 'usr.bin/pmdb/pmdb.h')
-rw-r--r-- | usr.bin/pmdb/pmdb.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/usr.bin/pmdb/pmdb.h b/usr.bin/pmdb/pmdb.h index f1b6446e127..5cb63a20cf2 100644 --- a/usr.bin/pmdb/pmdb.h +++ b/usr.bin/pmdb/pmdb.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pmdb.h,v 1.5 2002/08/08 18:27:57 art Exp $ */ +/* $OpenBSD: pmdb.h,v 1.6 2003/05/15 00:11:03 jfb Exp $ */ /* * Copyright (c) 2002 Artur Grabowski <art@openbsd.org> * All rights reserved. @@ -82,8 +82,6 @@ struct pstate { /* misc helper functions */ int process_kill(struct pstate *); -int read_from_pid(pid_t pid, off_t from, void *to, size_t size); -int write_to_pid(pid_t pid, off_t to, void *from, size_t size); /* process.c */ int process_load(struct pstate *); |