1*677abc79SAxel Dörfler /* 2*677abc79SAxel Dörfler * Copyright 2005, Axel Dörfler, axeld@pinc-software.de. All rights reserved. 3*677abc79SAxel Dörfler * Distributed under the terms of the MIT License. 4*677abc79SAxel Dörfler */ 5*677abc79SAxel Dörfler #ifndef LAUNCH_SPEEDUP_H 6*677abc79SAxel Dörfler #define LAUNCH_SPEEDUP_H 7*677abc79SAxel Dörfler 8*677abc79SAxel Dörfler 9*677abc79SAxel Dörfler // generic syscall interface 10*677abc79SAxel Dörfler #define LAUNCH_SPEEDUP_SYSCALLS "launch_speedup" 11*677abc79SAxel Dörfler 12*677abc79SAxel Dörfler #define LAUNCH_SPEEDUP_START_SESSION 1 13*677abc79SAxel Dörfler #define LAUNCH_SPEEDUP_STOP_SESSION 2 14*677abc79SAxel Dörfler 15*677abc79SAxel Dörfler 16*677abc79SAxel Dörfler #endif /* LAUNCH_SPEEDUP_H */ 17