From 494eefd86bf95970da962121a7538cd535e7d1f8 Mon Sep 17 00:00:00 2001 From: Marcel Moolenaar Date: Tue, 28 May 2002 05:58:06 +0000 Subject: [PATCH] Add syscall uuidgen() for generating Univerally Unique Identifiers (UUIDs). On ia64 UUIDs, aka GUIDs, are used by EFI and the firmware among others. To create GUID Partition Tables (GPTs), we need to be able to generate UUIDs. --- sys/kern/syscalls.master | 1 + 1 file changed, 1 insertion(+) diff --git a/sys/kern/syscalls.master b/sys/kern/syscalls.master index 28769e632aba..1a9e8b989274 100644 --- a/sys/kern/syscalls.master +++ b/sys/kern/syscalls.master @@ -562,3 +562,4 @@ 390 STD BSD { int kenv(int what, const char *name, char *value, \ int len); } 391 STD BSD { int lchflags(const char *path, int flags); } +392 STD BSD { int uuidgen(struct uuid *store, int count); }