-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuser.h
More file actions
25 lines (17 loc) · 818 Bytes
/
user.h
File metadata and controls
25 lines (17 loc) · 818 Bytes
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
//===========================================================================//
// Project: Projekat iz Operativnih sistema 1
// File: user.h
// Date: Maj 2021
// Parametri za pokretanje:
// arg[1] - velicina bafera
// arg[2] - Broj niti
// arg[3] - TIME_SLICE za proizvodjace
//===========================================================================//
#ifndef _OS1_USER_H_
#define _OS1_USER_H_
//---------------------------------------------------------------------------//
// Signalizira kraj za Producer i Consumer preko Keyevent
//---------------------------------------------------------------------------//
extern volatile int theEnd;
//---------------------------------------------------------------------------//
#endif // _OS1_USER_H_