Forked from
Glasgow Haskell Compiler / GHC
31841 commits behind, 272 commits ahead of the upstream repository.
-
Edward Z. Yang authored
Signed-off-by:
Edward Z. Yang <ezyang@mit.edu>
Edward Z. Yang authoredSigned-off-by:
Edward Z. Yang <ezyang@mit.edu>
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
RtsFlags.h 796 B
/* -----------------------------------------------------------------------------
*
* (c) The AQUA Project, Glasgow University, 1994-1997
* (c) The GHC Team, 1998-2006
*
* Functions for parsing the argument list.
*
* ---------------------------------------------------------------------------*/
#ifndef RTSFLAGS_H
#define RTSFLAGS_H
#include "BeginPrivate.h"
/* Routines that operate-on/to-do-with RTS flags: */
void initRtsFlagsDefaults (void);
void setupRtsFlags (int *argc, char *argv[],
RtsOptsEnabledEnum rtsOptsEnabled,
const char *ghc_rts_opts,
HsBool is_hs_main);
void setProgName (char *argv[]);
void freeRtsArgs (void);
#include "EndPrivate.h"
#endif /* RTSFLAGS_H */