[go: up one dir, main page]

File: SegfaultHandler.h

package info (click to toggle)
freebayes 1.3.9-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 6,984 kB
  • sloc: cpp: 125,778; ansic: 4,581; sh: 1,084; python: 672; asm: 271; javascript: 94; lisp: 85; makefile: 37; perl: 27
file content (13 lines) | stat: -rw-r--r-- 220 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef FREEBAYES_SEGFAULTHANDLER_H
#define FREEBAYES_SEGFAULTHANDLER_H

#include <stdio.h>
#ifndef __CYGWIN__
#include <execinfo.h>
#endif
#include <signal.h>
#include <stdlib.h>

void segfaultHandler(int sig);

#endif