[DOC]Fix FreeBSD Bugzilla link

This commit is contained in:
S-H-GAMELINKS 2022-03-14 23:20:30 +09:00 committed by Hiroshi SHIBATA
parent b85457c710
commit f27770679f
Notes: git 2022-03-15 09:24:17 +09:00
1 changed files with 1 additions and 1 deletions

2
cont.c
View File

@ -260,7 +260,7 @@ static ID fiber_initialize_keywords[2] = {0};
/* /*
* FreeBSD require a first (i.e. addr) argument of mmap(2) is not NULL * FreeBSD require a first (i.e. addr) argument of mmap(2) is not NULL
* if MAP_STACK is passed. * if MAP_STACK is passed.
* http://www.FreeBSD.org/cgi/query-pr.cgi?pr=158755 * https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=158755
*/ */
#if defined(MAP_STACK) && !defined(__FreeBSD__) && !defined(__FreeBSD_kernel__) #if defined(MAP_STACK) && !defined(__FreeBSD__) && !defined(__FreeBSD_kernel__)
#define FIBER_STACK_FLAGS (MAP_PRIVATE | MAP_ANON | MAP_STACK) #define FIBER_STACK_FLAGS (MAP_PRIVATE | MAP_ANON | MAP_STACK)