ADT
arm-eh
ast-experimental
enum
forall-pointer-decay
jacob/cs343-translation
new-ast-unique-expr
pthread-emulation
qualifiedEnum
Last change
on this file since 720b1a9 was 5715d43, checked in by Andrew Beach <ajbeach@…>, 5 years ago |
Exceptions now get their context differently with libcfathread. Added a number of tests to help test this.
|
-
Property mode
set to
100644
|
File size:
781 bytes
|
Line | |
---|
1 | //
|
---|
2 | // Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
|
---|
3 | //
|
---|
4 | // The contents of this file are covered under the licence agreement in the
|
---|
5 | // file "LICENCE" distributed with Cforall.
|
---|
6 | //
|
---|
7 | // exception-withthreads.cfa --
|
---|
8 | //
|
---|
9 | // Author : Andrew Beach
|
---|
10 | // Created On : Thr 13 16:12:00 2020
|
---|
11 | // Last Modified By : Andrew Beach
|
---|
12 | // Last Modified On : Fri 14 11:20:00 2020
|
---|
13 | // Update Count : 0
|
---|
14 | //
|
---|
15 |
|
---|
16 | #include <stdlib.hfa>
|
---|
17 | #include <exception.hfa>
|
---|
18 | #include "../exceptions/with-threads.hfa"
|
---|
19 |
|
---|
20 | TRIVIAL_EXCEPTION(ping);
|
---|
21 |
|
---|
22 | int main(void) {
|
---|
23 | try {
|
---|
24 | throwResume (ping){};
|
---|
25 | } catchResume (ping *) {
|
---|
26 | printf("%s threads\n", threading_enabled() ? "with" : "no");
|
---|
27 | }
|
---|
28 | return 0;
|
---|
29 | }
|
---|
30 |
|
---|
31 | // Local Variables: //
|
---|
32 | // tab-width: 4 //
|
---|
33 | // compile-command: "cfa nothreads.cfa" //
|
---|
34 | // End: //
|
---|
Note:
See
TracBrowser
for help on using the repository browser.