kaist-cp / cs431

1.42k stars 135 forks source link

[HW6] About grading error #596

Closed Seongho18 closed 2 years ago

Seongho18 commented 2 years ago

I've got 60 points at test in the given server, but I got 0 points at the gg site.

In log, there are some errors during compiling, which I can't see on my remote server.

error[E0432]: unresolved import retire::RetiredSet --> src/hazard_pointer/mod.rs:83:9 83 pub use retire::RetiredSet; ^^^^^^^^----------
help: a similar name exists in the module: Retirees
no RetiredSet in hazard_pointer::retire

error[E0432]: unresolved import super::align --> src/hazard_pointer/hazard.rs:14:5 | 14 | use super::align; | ^^^^^^^^^^^^ no align in hazard_pointer

error[E0432]: unresolved import super::atomic --> src/hazard_pointer/hazard.rs:15:12 | 15 | use super::atomic::Shared; | ^^^^^^ could not find atomic in super

error[E0432]: unresolved import super::align --> src/hazard_pointer/retire.rs:6:5 | . . . For more information about this error, try rustc --explain E0432. warning: cs431-homework (lib) generated 24 warnings error: could not compile cs431-homework due to 6 previous errors; 24 warnings emitted

glacya commented 2 years ago

Maybe you are not using latest version of skeleton code, I've seen several people had similar problem. Try to update your skeleton code from this repository!

Seongho18 commented 2 years ago

I solved it. Thank you a lot.