SYNOPSIS
#include <sys/uuid.h>
int uuidgen(struct uuid *store, int count);
DESCRIPTION
The
Universally unique identifiers, also known as globally unique identifiers (GUIDs), have a binary representation of 128-bits. The grouping of these bits is described by the following structure, while any meanings are purely historical:
struct uuid { uint32_t time_low; uint16_t time_mid; uint16_t time_hi_and_version; uint8_t clock_seq_hi_and_reserved; uint8_t clock_seq_low; uint8_t node[_UUID_NODE_LEN]; };
The binary representation is sensitive to byte ordering. Any multi-byte field is to be stored in the local or native byte-order and identifiers must be converted when transmitted to hosts that do not agree on the byte-order. The specification does not however document what this means in concrete terms and is otherwise beyond the scope of this system call.
RETURN VALUES
Upon successful completion, the value 0 is returned; otherwise the value -1 is returned and the global variable errno is set to indicate the error.
CONFORMANCE
The UUID functions conform to the DCE 1.1 RPC specification.
MULTITHREAD SAFETY LEVEL
Safe.
PORTING ISSUES
Linux defines
PORTABILITY
FreeBSD 5 and up. Windows 10. Windows Server 2016. Windows Server 2019. Windows 11. Windows Server 2022. Windows Server 2025.
AVAILABILITY
PTC MKS Toolkit for Professional Developers
PTC MKS Toolkit for Professional Developers 64-Bit Edition
PTC MKS Toolkit for Enterprise Developers
PTC MKS Toolkit for Enterprise Developers 64-Bit Edition
SEE ALSO
- Commands:
- uuidgen
- Functions:
uuidgen()
PTC MKS Toolkit 10.5 Documentation Build 40.