XtMalloc
NAMESYNTAX
ARGUMENTS
DESCRIPTION
SEE ALSO
NAME
XtMalloc, XtCalloc, XtRealloc, XtFree, XtNew, XtNewString − memory management functions
SYNTAX
char *XtMalloc(Cardinal size); |
||
char *XtCalloc(Cardinal num, Cardinal size); |
||
char *XtRealloc(char *ptr, Cardinal num); |
||
void XtFree(char *ptr); |
||
type *XtNew(type); |
||
String XtNewString(String string); |
ARGUMENTS
num |
Specifies the number of bytes or array elements. | ||
ptr |
Specifies a pointer to the old storage or to the block of storage that is to be freed. | ||
size |
Specifies the size of an array element (in bytes) or the number of bytes desired. | ||
string |
Specifies a previously declared string. | ||
type |
Specifies a previously declared data type. |
DESCRIPTION
The XtMalloc functions returns a pointer to a block of storage of at least the specified size bytes. If there is insufficient memory to allocate the new block, XtMalloc calls XtErrorMsg.
The XtCalloc function allocates space for the specified number of array elements of the specified size and initializes the space to zero. If there is insufficient memory to allocate the new block, XtCalloc calls XtErrorMsg.
The XtRealloc function changes the size of a block of storage (possibly moving it). Then, it copies the old contents (or as much as will fit) into the new block and frees the old block. If there is insufficient memory to allocate the new block, XtRealloc calls XtErrorMsg. If ptr is NULL, XtRealloc allocates the new storage without copying the old contents; that is, it simply calls XtMalloc.
The XtFree function returns storage and allows it to be reused. If ptr is NULL, XtFree returns immediately.
XtNew returns a pointer to the allocated storage. If there is insufficient memory to allocate the new block, XtNew calls XtErrorMsg. XtNew is a convenience macro that calls XtMalloc with the following arguments specified:
((type *) XtMalloc((unsigned) sizeof(type))
XtNewString returns a pointer to the allocated storage. If there is insufficient memory to allocate the new block, XtNewString calls XtErrorMsg. XtNewString is a convenience macro that calls XtMalloc with the following arguments specified:
(strcpy(XtMalloc((unsigned) strlen(str) + 1), str))
SEE ALSO
X Toolkit
Intrinsics − C Language Interface
Xlib − C Language X Interface
More Linux Commands
manpages/Math::Complex.3pm.html
Math::Complex(3pm) - complex numbers and associated mathemat
This package lets you create and manipulate complex numbers. By default, Perl limits itself to real numbers, but an extra use statement brings full complex supp
manpages/paste.1.html
paste(1) - merge lines of files (Commands - Linux man page)
Write lines consisting of the sequentially corresponding lines from each FILE, separated by TABs, to standard output. With no FILE, or when FILE is -, read stan
manpages/Cyrus::SIEVE::managesieve.3pm.html
Cyrus::SIEVE::managesieve(3pm) - Perl extension for blah bla
Call sieve_get_handle to get a handle for further calls. sieve_get_error will return a string representing the last error, if any. Blah blah blah. AUTHOR T. Mar
manpages/svc_getcaller.3.html
svc_getcaller(3) - library routines for remote procedure cal
These routines allow C programs to make procedure calls on other machines across the network. First, the client calls a procedure to send a data packet to the s
manpages/statfs.2.html
statfs(2) - get file system statistics - Linux manual page
The function statfs() returns information about a mounted filesystem. path is the pathname of any file within the mounted filesystem. buf is a pointer to a stat
manpages/XRectangle.3.html
XRectangle(3) - draw rectangles and rectangles structure....
The XDrawRectangle and XDrawRectangles functions draw the outlines of the specified rectangle or rectangles as if a five-point PolyLine protocol request were sp
manpages/XDeleteDeviceProperty.3.html
XDeleteDeviceProperty(3) - Get, change or delete a device's
The XGetDeviceProperty function returns the actual type of the property; the actual format of the property; the number of 8-bit, 16-bit, or 32-bit items transfe
manpages/wmouse_trafo.3ncurses.html
wmouse_trafo(3ncurses) - mouse interface through curses.....
These functions provide an interface to mouse events from ncurses(3NCURSES). Mouse events are represented by KEY_MOUSE pseudo-key values in the wgetch input str
manpages/glEdgeFlag.3gl.html
glEdgeFlag(3gl) - flag edges as either boundary or nonbounda
Each vertex of a polygon, separate triangle, or separate quadrilateral specified between a glBegin/glEnd pair is marked as the start of either a boundary or non
manpages/glScaled.3gl.html
glScaled(3gl) - multiply the current matrix by a general sca
glScale produces a nonuniform scaling along the x, y, and z axes. The three parameters indicate the desired scale factor along each of the three axes. The curre
manpages/Tk_DefineBitmap.3.html
Tk_DefineBitmap(3) - maintain database of single-plane pixma
These procedures manage a collection of bitmaps (one-plane pixmaps) being used by an application. The procedures allow bitmaps to be re-used efficiently, thereb
manpages/glTexParameterf.3gl.html
glTexParameterf(3gl) - set texture parameters (Man Page)....
Texture mapping is a technique that applies an image onto an objects surface as if the image were a decal or cellophane shrink-wrap. The image is created in tex
