00001 /* 00002 FALCON - The Falcon Programming Language. 00003 FILE: vm_sys_posix.h 00004 00005 System specifics for the falcon VM - POSIX compliant systems. 00006 ------------------------------------------------------------------- 00007 Author: Giancarlo Niccolai 00008 Begin: Fri, 25 Apr 2008 17:30:00 +0200 00009 00010 ------------------------------------------------------------------- 00011 (C) Copyright 2004: the FALCON developers (see list in AUTHORS file) 00012 00013 See LICENSE file for licensing details. 00014 */ 00015 00016 #ifndef FLC_VM_SYS_POSIX_H 00017 #define FLC_VM_SYS_POSIX_H 00018 00019 namespace Falcon { 00020 namespace Sys { 00021 00022 struct VM_SYS_DATA 00023 { 00024 int interruptPipe[2]; 00025 }; 00026 00027 } 00028 } 00029 00030 #endif 00031 00032 /* end of vm_sys_posix.h */