Trung Nguyen

Results 135 comments of Trung Nguyen

> Where is it mentioned? This issue is about Windows 7. To clarify, the [Microsoft Update catalog](https://www.catalog.update.microsoft.com/Home.aspx) was mentioned in #166. I've searched for Windows 10 Mobile updates there, and...

Sorry, I don't know much about the internals of these updates. After a bit of digging, the updates still available for Windows 10 Mobile on the catalog are OS images...

This issue seems to be focused on relieving of the complexity of having to manage various Linux distros and their versions. What about other OSes that are completely different from...

> It would just take a community member or members willing to port the runtime to Haiku and maintain compatibility. https://github.com/dotnet/runtime/pull/86391#discussion_r1247869065 It is being done here, but other members of...

`-2147483643` is `0x80000005`, which translates to `B_BAD_VALUE`. This occurs in a `hserver` call: ```cpp status_t status = loader_hserver_call_register_image(&haiku_info, sizeof(haiku_info)); if (status < 0) { std::cerr

Under normal circumstances this should not happen: ```cpp int Process::RegisterImage(const haiku_extended_image_info& image) { int id = _images.Add(image); _images.Get(id).basic_info.id = id; _info.image_count = _images.size(); return id; } ``` > By moving...

Which compiler and optimization flags are you using? Normally I do test release builds, but there may have been some undefined behavior somewhere that only arises in certain modes of...

Also, it might be the case that the servercall hasn't even reached the function yet - `B_BAD_VALUE` is returned from the _dispatcher_: https://github.com/trungnt2910/hyclone/blob/f590514746427aeb298c139080af24bf6cf1f92a/hyclone_server/server_dispatch.cpp#L35-L56 Considering what you said in https://github.com/trungnt2910/hyclone/issues/15#issuecomment-1787468948 and...

> I added pid/tid to log, it tells `pid=-1`. I should have uploaded entire log. > > (This time, it doesn't stop before prompt w/ RelWithDebInfo build.) > > [_hyclone.log](https://github.com/trungnt2910/hyclone/files/13244910/_hyclone.log)...

If `context.pid` is `-1`, then this means `system.GetThreadFromConnection` has returned `-1` for the `pid` value. https://github.com/trungnt2910/hyclone/blob/f590514746427aeb298c139080af24bf6cf1f92a/hyclone_server/system.cpp#L117-L123 Can you check whether the connection ID does not exist (in which case the...