1 /* 2 * Copyright 2019, Haiku, Inc. All rights reserved. 3 * Distributed under the terms of the MIT License. 4 */ 5 #ifndef _SYSTEM_SYSCALL_LOAD_IMAGE_H 6 #define _SYSTEM_SYSCALL_LOAD_IMAGE_H 7 8 9 enum { 10 B_WAIT_TILL_LOADED = 0x01, 11 /* Wait till the loader has loaded and relocated (but not yet 12 initialized) the application image and all dependencies. If not 13 supplied, the function returns before the loader started to do 14 anything at all, i.e. it returns success, even if the executable 15 doesn't exist. */ 16 }; 17 18 19 #endif /* _SYSTEM_SYSCALL_LOAD_IMAGE_H */ 20