Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

fuword(9r) [osf1 man page]

fuword(9r)																fuword(9r)

NAME
fuword - General: Returns a word from user instruction address space SYNOPSIS
int fuword( char *user_src ); ARGUMENTS
Specifies the address in user space from which to read the word. DESCRIPTION
The fuword routine returns one word from the unprotected user address space to the calling program. RETURN VALUES
Upon successful completion, fuword returns a value greater than 0 (zero). Otherwise, it returns -1, indicating that the user address speci- fied in user_src cannot be accessed. SEE ALSO
Routines: copyinstr(9r), fubyte(9r), subyte(9r), suword(9r) fuword(9r)

Check Out this Related Man Page

FETCH(9)						   BSD Kernel Developer's Manual						  FETCH(9)

NAME
fetch, fubyte, fuibyte, fusword, fuswintr, fuword, fuiword -- fetch data from user-space SYNOPSIS
#include <sys/types.h> #include <sys/systm.h> int fubyte(const void *base); int fusword(const void *base); int fuswintr(const void *base); long fuword(const void *base); DESCRIPTION
The fetch functions are designed to copy small amounts of data from user-space. The fetch routines provide the following functionality: fubyte() Fetches a byte of data from the user-space address base. fusword() Fetches a short word of data from the user-space address base. fuswintr() Fetches a short word of data from the user-space address base. This function is safe to call during an interrupt context. fuword() Fetches a word of data from the user-space address base. RETURN VALUES
The fetch functions return the data fetched or -1 on failure. Note that these functions all do "unsigned" access, and therefore will never sign extend byte or short values. This prevents ambiguity with the error return value for all functions except fuword(). SEE ALSO
copy(9), store(9) BUGS
The function fuword() has no way to unambiguously signal an error, because the data it reads might legitimately be the same as the -1 used to indicate an error. The other functions do not have this problem because the unsigned values returned by those can never match the -1 error return value. BSD
January 7, 1996 BSD
Man Page

We Also Found This Discussion For You

1. What is on Your Mind?

Throw my Toys out of the Pram!

Hi Folks, Today hasn't been the best one of my career in IT. I've been a contractor for a major utility company for a number of years, on a number of seperate IT contracts mostly Unix. The company had 10 different flavours of unix and multiple different varsions of most of them. At the... (3 Replies)
Discussion started by: gull04
3 Replies