1 /* File control operations for Xtensa ISS semihosting. */ 2 3 /* Copyright (c) 2003 by Tensilica Inc. ALL RIGHTS RESERVED. 4 These coded instructions, statements, and computer programs are the 5 copyrighted works and confidential proprietary information of Tensilica Inc. 6 They may not be modified, copied, reproduced, distributed, or disclosed to 7 third parties in any manner, medium, or form, in whole or in part, without 8 the prior written consent of Tensilica Inc. */ 9 10 #ifndef _SIMCALL_FCNTL_H 11 #define _SIMCALL_FCNTL_H 12 13 #define _SIMC_O_APPEND 0x0008 14 #define _SIMC_O_NONBLOCK 0x0080 15 #define _SIMC_O_CREAT 0x0100 16 #define _SIMC_O_TRUNC 0x0200 17 #define _SIMC_O_EXCL 0x0400 18 #define _SIMC_O_TEXT 0x4000 19 #define _SIMC_O_BINARY 0x8000 20 21 #endif /* ! _SIMCALL_FCNTL_H */ 22