Changeset af67ee1 for tests/concurrent


Ignore:
Timestamp:
Aug 27, 2021, 12:51:55 PM (3 years ago)
Author:
caparsons <caparson@…>
Branches:
ADT, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, pthread-emulation, qualifiedEnum
Children:
1b97976c
Parents:
9f5a19fa
Message:

Added support for locks as parameters to mutex stmt

Location:
tests/concurrent/mutexstmt
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • tests/concurrent/mutexstmt/locks.cfa

    r9f5a19fa raf67ee1  
    1 #include <mutex_stmt_locks.hfa>
     1#include <mutex_stmt.hfa>
    22#include <locks.hfa>
    33
     
    1313        for (unsigned int i = 0; i < num_times; i++) {
    1414                mutex ( m1 ) count++;
    15                 mutex ( m1 ) {
     15                mutex ( m1 ) { 
    1616                        assert(!insideFlag);
    1717                        insideFlag = true;
     
    6565        printf("Start Test: single lock mutual exclusion\n");
    6666        {
    67                 T_Mutex t[10];
     67                T_Mutex t[1];
    6868        }
    6969        printf("End Test: single lock mutual exclusion\n");
  • tests/concurrent/mutexstmt/monitors.cfa

    r9f5a19fa raf67ee1  
    11#include <monitor.hfa>
     2#include <mutex_stmt.hfa>
    23#include <stdio.h>
    34#include <stdlib.hfa>
     
    1314bool insideFlag = false;
    1415int count = 0;
     16bool startFlag = false;
    1517
    1618void main( T_Mutex & this ) {
Note: See TracChangeset for help on using the changeset viewer.