swh:1:snp:a72e953ecd624a7df6e6196bbdd05851996c5e40
Raw File
Tip revision: a7cd4a3c97193ba32ec8da6a9403e5ad8857a999 authored by Keno Fischer on 01 May 2018, 19:45:17 UTC
[NewOptimizer] Make stmt_effect_free less aggressive
Tip revision: a7cd4a3
file_constants.h
// This file is a part of Julia. License is MIT: https://julialang.org/license

#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
const JL_DUMMY = 0
const JL_O_WRONLY      = O_WRONLY
const JL_O_RDONLY      = O_RDONLY
const JL_O_RDWR        = O_RDWR
const JL_O_APPEND      = O_APPEND
const JL_O_CREAT       = O_CREAT
const JL_O_EXCL        = O_EXCL
const JL_O_TRUNC       = O_TRUNC
#ifdef O_TEMPORARY
const JL_O_TEMPORARY   = O_TEMPORARY
#endif
#ifdef O_SHORT_LIVED
const JL_O_SHORT_LIVED  = O_SHORT_LIVED
#endif
#ifdef O_SEQUENTIAL
const JL_O_SEQUENTIAL   = O_SEQUENTIAL
#endif
#ifdef O_RANDOM
const JL_O_RANDOM       = O_RANDOM
#endif
#ifdef O_NOCTTY
const JL_O_NOCTTY       = O_NOCTTY
#endif
back to top