summaryrefslogtreecommitdiffstats
path: root/fastos/src/tests/coretest2.cpp
blob: a8c416f2de4dcc0e4850ece4b0adf467f92ddd62 (plain) (blame)
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
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.




static void
bomb(void)
{
    char *p;

    p = NULL;
    *p = 4;
}

void *BomberRun(void *arg)
{
    (void) arg;
    bomb();
    return NULL;
};

static int
bombMain(void)
{
    pthread_t thread;
    void *ret;

    (void) pthread_create(&thread, NULL, BomberRun, NULL);
    ret = NULL;
    (void) pthread_join(thread, &ret);
    return (0);
}


int
main(int argc, char **argv)
{
    (void) argc;
    (void) argv;
    return bombMain();
}