#!/usr/bin/env bash case "${0##*/}" in pywrap.sh) arg1="";; *) arg1="$0.py" ;; esac for bin in python python2 python2.7 python2.6 python2.5 python2.4; do case "$($bin -V 2>&1)" in "Python 2"*) exec $bin $arg1 "$@" ;; esac done echo "Unable to find a Python 2.x interpreter for executing ${arg1:+$arg1 }$@ !" >&2 exit 1 acetest.c?h=master' type='application/atom+xml'/>
aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/backtracetest.c
blob: a5e026bc45c4174ec72a13b719fd44211385fb24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91