1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

memory: fix jump lable position for arm ifdef

This commit is contained in:
Manuel Pitz 2019-04-08 14:04:07 +01:00 committed by Steffen Vogel
parent 9d7e44860e
commit 4107564ecc

View file

@ -91,8 +91,8 @@ int memory_lock(size_t lock)
debug(LOG_MEM | 2, "Increased ressource limit of locked memory to %zd bytes", lock);
}
#endif /* __arm__ */
out:
#endif /* __arm__ */
#ifdef _POSIX_MEMLOCK
/* Lock all current and future memory allocations */
ret = mlockall(MCL_CURRENT | MCL_FUTURE);