Last change
on this file since 32 was
27,
checked in by buchmann, 16 years ago
|
SystemCASS now uses autoconf/automake to build the API. Regression tests still
use the old Makefiles.
(thanks to Nicolas Pouillon)
The library directory no longer is "lib-arch-system". The directory now is "lib-linux". Everyone needs to pay attention about SYSTEMCASS environment variable.
Changes:
- system header includes
- Add includes to config.h (generated by autoconf/automake)
- test:
- linux preprocessor macro instead of _WIN32
- CONFIG_DEBUG instead of DEBUG
Removes:
- Makefile
- guess_endianness.cc
- guess_os.sh
- assert.h (we now use standard assert.h)
- Options.def
|
File size:
1.1 KB
|
Line | |
---|
1 | /*------------------------------------------------------------\ |
---|
2 | | | |
---|
3 | | Tool : systemcass | |
---|
4 | | | |
---|
5 | | File : schedulers.h | |
---|
6 | | | |
---|
7 | | Author : Buchmann Richard | |
---|
8 | | | |
---|
9 | | Date : 23_03_2007 | |
---|
10 | | | |
---|
11 | \------------------------------------------------------------*/ |
---|
12 | #ifndef __SCHEDULERS_H__ |
---|
13 | #define __SCHEDULERS_H__ |
---|
14 | |
---|
15 | #include "sc_fwd.h" |
---|
16 | #include "sc_time.h" |
---|
17 | |
---|
18 | namespace sc_core { |
---|
19 | |
---|
20 | ///////////////////////// |
---|
21 | ///// SYSTEMCASS_SPECIFIC |
---|
22 | extern const char *temporary_dir; |
---|
23 | extern const char *generated_files_dir; |
---|
24 | extern std::string get_scheduling (int scheduling_method); |
---|
25 | extern bool run_schedule_editor (const char* scheduling); |
---|
26 | |
---|
27 | ///////////////////////// |
---|
28 | |
---|
29 | } // end of namespace sc_core |
---|
30 | |
---|
31 | #endif |
---|
32 | |
---|
Note: See
TracBrowser
for help on using the repository browser.