utrace -- insert user record in ktrace log
Standard C Library (libc, -lc)
#include <sys/types.h>
#include <sys/param.h>
#include <sys/time.h>
#include <sys/uio.h>
#include <sys/ktrace.h>
int
utrace(const void *addr, size_t len);
Adds a record to the process trace with information supplied by user.
The record contains len bytes from memory pointed to by addr. This call
only has an effect if the calling process is being traced.
Upon successful completion, a value of 0 is returned. Otherwise, a value
of -1 is returned and errno is set to indicate the error.
[EINVAL] Specified data length len was bigger than
KTR_USER_MAXLEN.
[ENOMEM] Insufficient memory to honor the request.
[ENOSYS] Currently running kernel was compiled without
ktrace(2) support (option KTRACE).
kdump(1), ktrace(1), ktrace(2)
The utrace() system call first appeared in FreeBSD 2.2.
FreeBSD 5.2.1 December 28, 2000 FreeBSD 5.2.1 [ Back ] |