Fix ci
This commit is contained in:
parent
7d82649a62
commit
cef1e852f4
|
@ -17,9 +17,9 @@ build:sh4-gcc:
|
||||||
|
|
||||||
build:x86-gcc:
|
build:x86-gcc:
|
||||||
stage: build
|
stage: build
|
||||||
image: fedora:33
|
image: fedora:34
|
||||||
before_script:
|
before_script:
|
||||||
- sudo dnf install -y cmake gcc gcc-c++ SDL2-devel.i686 glibc-devel.i686
|
- sudo dnf install -y cmake gcc gcc-c++ SDL2-devel glibc-devel pkgconf-pkg-config glibc-devel.i686 SDL2-devel.i686
|
||||||
script:
|
script:
|
||||||
- mkdir builddir
|
- mkdir builddir
|
||||||
- cd builddir
|
- cd builddir
|
||||||
|
|
|
@ -99,8 +99,11 @@ static int thd_each_cb(kthread_t* thd, void* data) {
|
||||||
* current. Obviouly thought between iterations the
|
* current. Obviouly thought between iterations the
|
||||||
* PC will change so it's not like this is a true snapshot
|
* PC will change so it's not like this is a true snapshot
|
||||||
* in time across threads */
|
* in time across threads */
|
||||||
|
int old = irq_disable();
|
||||||
uint32_t PC = thd->context.pc;
|
uint32_t PC = thd->context.pc;
|
||||||
uint32_t PR = thd->context.pr;
|
uint32_t PR = thd->context.pr;
|
||||||
|
irq_restore(old);
|
||||||
|
|
||||||
record_thread(PC, PR);
|
record_thread(PC, PR);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user