Fuyin

Results 19 comments of Fuyin

> 在判断中断是否会被屏蔽的时候,有以下规则: > - 如果中断的特权级低于 CPU 当前的特权级,则该中断会被屏蔽,不会被处理; 想请教一下,这里说的“中断特权级低于CPU当前特权级就会被屏蔽”,是因为低于`x`特权级的中断在`xie`里都是屏蔽的吗,还是因为都会在`xideleg`里被设置成delegate到下一特权级处理才被屏蔽呢? 我在privileged spec里看到了下面这几句,所以有点疑惑: > By default, all traps at any privilege level are handled in machine mode.. > An interrupt i will trap...

> Hi @whfuyn, thank you for writing the patch! I'm looking forward this to be merged. Is there any update? Sorry, I didn't see your reply until the new notification...

`Mongodb error: Kind: invalid type: string "", expected a bytestring` ...does it respect `human_readable` in deserialization? ```rust /// Deserialize an instance of type `T` from a slice of BSON bytes....

https://github.com/mongodb/mongo-rust-driver/blob/c070269592c84627db1d87f33f88ce6c8d143c34/src/cursor/common.rs#L281 It's de-serialized in here.

OK, I found [RUST-1763](https://jira.mongodb.org/browse/RUST-1763). > - Most users are not concerned with the way their data is represented in the database as long as it properly round-trips through the driver....

Provide an example here in case it helps: ```zig const std = @import("std"); const EnumMap = std.EnumMap; const Ty = enum(u8) { a, b, }; const HANDLERS_MAP = EnumMap(Ty, fn...

Close https://github.com/martinezjavier/ldd3/issues/81

I'm experiencing the same problem after I updated `wsl`, as it prompted, several days ago. It occurred four or five times, mostly after awaking from hibernation. I'll try to see...

I'm a bit of worried about sending out dump files may leak private info. I put the dump file into windbg. The output of `!analyze -v` looks like this: ```...