source: tests/linking/withthreads.cfa @ 2026bb6

ADTarm-ehast-experimentalenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change on this file since 2026bb6 was 2026bb6, checked in by Thierry Delisle <tdelisle@…>, 5 years ago

More robust fix for optionally linking threads

  • Property mode set to 100644
File size: 692 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// nothreads.cfa --
8//
9// Author           : Thierry Delisle
10// Created On       : Tue Jul 16 12:14:39 2019
11// Last Modified By :
12// Last Modified On :
13// Update Count     :
14//
15
16#include <fstream.hfa>
17#include <stdlib.hfa>
18
19#include <thread.hfa>
20
21thread Dummy {};
22void main( Dummy & ) {}
23
24int main() {
25        if(threading_enabled()) {
26                stdout | "YES";
27        } else {
28                stdout | "NO";
29        }
30        Dummy d;
31        return 0;
32}
33
34// Local Variables: //
35// tab-width: 4 //
36// compile-command: "cfa nothreads.cfa" //
37// End: //
Note: See TracBrowser for help on using the repository browser.