File: t_process.out

package info (click to toggle)
verilator 4.038-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 29,596 kB
  • sloc: cpp: 90,585; perl: 15,101; ansic: 8,573; yacc: 3,626; lex: 1,616; makefile: 1,101; sh: 175; python: 145
file content (22 lines) | stat: -rw-r--r-- 1,171 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
%Error: t/t_process.v:22:4: Can't find typedef: 'process'
   22 |    process p;
      |    ^~~~~~~
%Error: t/t_process.v:26:20: Can't find definition of task/function: 'self'
   26 |       p = process::self();
      |                    ^~~~
%Error: t/t_process.v:27:34: Can't find definition of variable: 'RUNNING'
   27 |       if (p.status() != process::RUNNING) $stop;
      |                                  ^~~~~~~
%Error: t/t_process.v:28:34: Can't find definition of variable: 'WAITING'
   28 |       if (p.status() == process::WAITING) $stop;
      |                                  ^~~~~~~
%Error: t/t_process.v:29:34: Can't find definition of variable: 'SUSPENDED'
   29 |       if (p.status() == process::SUSPENDED) $stop;
      |                                  ^~~~~~~~~
%Error: t/t_process.v:30:34: Can't find definition of variable: 'KILLED'
   30 |       if (p.status() == process::KILLED) $stop;
      |                                  ^~~~~~
%Error: t/t_process.v:31:34: Can't find definition of variable: 'FINISHED'
   31 |       if (p.status() == process::FINISHED) $stop;
      |                                  ^~~~~~~~
%Error: Exiting due to