mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-06 21:45:58 +01:00
Force ftruncate for shared mem. objects on FreeBSD
FreeBSD does not allow to use posix_fallocate on shared memory objects.
This commit is contained in:
parent
bcd19a8824
commit
b25e230df8
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ int allocate_shm_file(size_t size) {
|
|||
return -1;
|
||||
}
|
||||
|
||||
#ifdef WLR_HAS_POSIX_FALLOCATE
|
||||
#if defined(WLR_HAS_POSIX_FALLOCATE) && !defined(__FreeBSD__)
|
||||
int ret;
|
||||
do {
|
||||
ret = posix_fallocate(fd, 0, size);
|
||||
|
|
Loading…
Reference in a new issue