MirBSD manpage: XtCalloc(3), XtFree(3), XtMalloc(3), XtNew(3), XtNewString(3), XtRealloc(3)


XtMalloc(3Xt)             XT FUNCTIONS              XtMalloc(3Xt)

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 initial-
     izes 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 con-
     tents (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.

XFree86                   Version 4.5.0                         1

XtMalloc(3Xt)             XT FUNCTIONS              XtMalloc(3Xt)

     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

XFree86                   Version 4.5.0                         2

Generated on 2021-12-07 11:07:08 by $MirOS: src/scripts/roff2htm,v 1.103 2021/01/23 20:24:35 tg Exp $ — This product includes material provided by mirabilos.

These manual pages and other documentation are copyrighted by their respective writers; their sources are available at the project’s CVSweb, AnonCVS and other mirrors. The rest is Copyright © 2002–2021 MirBSD.

This manual page’s HTML representation is supposed to be valid XHTML/1.1; if not, please send a bug report — diffs preferred.