Exemplo n.º 1
0
Arquivo: afd_stat.c Projeto: hfs/afd
/*++++++++++++++++++++++++++++++ sig_bus() ++++++++++++++++++++++++++++++*/
static void
sig_bus(int signo)
{
   system_log(FATAL_SIGN, __FILE__, __LINE__, "Uuurrrggh! Received SIGBUS.");
   stat_exit();

   /* Dump core so we know what happened. */
   abort();
}
Exemplo n.º 2
0
Arquivo: afd_stat.c Projeto: hfs/afd
/*++++++++++++++++++++++++++++++ sig_segv() +++++++++++++++++++++++++++++*/
static void                                                                
sig_segv(int signo)
{                  
   system_log(FATAL_SIGN, __FILE__, __LINE__, "Aaarrrggh! Received SIGSEGV.");
   stat_exit();

   /* Dump core so we know what happened. */
   abort();
}
Exemplo n.º 3
0
void
exitStorage (void)
{
    updateNurseriesStats();
    stat_exit();
}
Exemplo n.º 4
0
Arquivo: Storage.c Projeto: Eufavn/ghc
void
exitStorage (void)
{
    lnat allocated = updateNurseriesStats();
    stat_exit(allocated);
}
Exemplo n.º 5
0
Arquivo: Storage.c Projeto: Sciumo/ghc
void
exitStorage (void)
{
    stat_exit(calcAllocated(rtsTrue));
}