From: Samuel Thibault Date: Wed, 20 Nov 2024 18:51:08 +0000 (+0100) Subject: mman.h: Fix MAP_HASSEMPHORE typo X-Git-Tag: glibc-2.41~469 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c0365d3791666c67ad410007efb52fc9b16d4287;p=thirdparty%2Fglibc.git mman.h: Fix MAP_HASSEMPHORE typo BSD's MAP_HASSEMAPHORE is with an A. MAP_HASSEMPHORE is not used in any Debian software for instance. --- diff --git a/bits/mman.h b/bits/mman.h index af26ccdba3..b3495a7337 100644 --- a/bits/mman.h +++ b/bits/mman.h @@ -50,7 +50,7 @@ /* Other flags. */ #define MAP_FIXED 0x0100 /* Map address must be exactly as requested. */ #define MAP_NOEXTEND 0x0200 /* For MAP_FILE, don't change file size. */ -#define MAP_HASSEMPHORE 0x0400 /* Region may contain semaphores. */ +#define MAP_HASSEMAPHORE 0x0400 /* Region may contain semaphores. */ #define MAP_INHERIT 0x0800 /* Region is retained after exec. */ /* Advice to `madvise'. */