Query: utrace
OS: netbsd
Section: 2
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
UTRACE(2) BSD System Calls Manual UTRACE(2)NAMEutrace -- insert user record in ktrace logLIBRARYStandard C Library (libc, -lc)SYNOPSIS#include <sys/types.h> #include <sys/param.h> #include <sys/time.h> #include <sys/uio.h> #include <sys/ktrace.h> int utrace(const char *label, void *addr, size_t len);DESCRIPTIONAdds a record to the process trace with information supplied by user. The record is identified by label and contains len bytes from memory pointed to by addr. This call only has an effect if the calling process is being traced.RETURN VALUESUpon successful completion, a value of 0 is returned. Otherwise, a value of -1 is returned and errno is set to indicate the error.ERRORS[ENOSYS] Currently running kernel was compiled without ktrace(2) support (option KTRACE). [EINVAL] Specified data length len was bigger than KTR_USER_MAXLEN.SEE ALSOkdump(1), ktrace(1), ktruss(1), fktrace(2), ktrace(2), options(4)HISTORYThe utrace() system call first appeared in FreeBSD 2.2. It was added to NetBSD in NetBSD 1.6. The label argument is a NetBSD extension.BSDDecember 28, 2000 BSD
Related Man Pages |
---|
ktrace(2) - debian |
ktrace(1) - opendarwin |
ktrace(1) - netbsd |
ktruss(1) - netbsd |
utrace(2) - netbsd |
Similar Topics in the Unix Linux Community |
---|
Why my find return not expected? |