Adjust the declarations of kvm_read and kvm_write to match reality a little
closer.
This commit is contained in:
parent
435b9d97a5
commit
7a96388db1
@ -61,8 +61,8 @@ kvm_t *kvm_open
|
||||
__P((const char *, const char *, const char *, int, const char *));
|
||||
kvm_t *kvm_openfiles
|
||||
__P((const char *, const char *, const char *, int, char *));
|
||||
int kvm_read __P((kvm_t *, unsigned long, void *, unsigned int));
|
||||
int kvm_write __P((kvm_t *, unsigned long, const void *, unsigned int));
|
||||
ssize_t kvm_read __P((kvm_t *, unsigned long, void *, size_t));
|
||||
ssize_t kvm_write __P((kvm_t *, unsigned long, const void *, size_t));
|
||||
/* Comment this out until it can be fixed correctly.
|
||||
ssize_t kvm_uread
|
||||
__P((kvm_t *, struct proc *, unsigned long, char *, size_t));
|
||||
|
@ -61,8 +61,8 @@ kvm_t *kvm_open
|
||||
__P((const char *, const char *, const char *, int, const char *));
|
||||
kvm_t *kvm_openfiles
|
||||
__P((const char *, const char *, const char *, int, char *));
|
||||
int kvm_read __P((kvm_t *, unsigned long, void *, unsigned int));
|
||||
int kvm_write __P((kvm_t *, unsigned long, const void *, unsigned int));
|
||||
ssize_t kvm_read __P((kvm_t *, unsigned long, void *, size_t));
|
||||
ssize_t kvm_write __P((kvm_t *, unsigned long, const void *, size_t));
|
||||
/* Comment this out until it can be fixed correctly.
|
||||
ssize_t kvm_uread
|
||||
__P((kvm_t *, struct proc *, unsigned long, char *, size_t));
|
||||
|
Loading…
Reference in New Issue
Block a user