Steven Engler
Steven Engler
I agree that the client should be smarter about this by default, but for those of us who want this feature, you can use the following CSS to blacklist common...
Not sure how much it's related since I'm not familiar with how Python handles encodings, but I had the same error when starting alot (and therefore the search buffer) since...
> Actually, I underestimated the amount of prior discussion about this, though nothing appears to have happened on the topic in the past year. No worries, and I understand if...
Thanks for including a reproducible example. Looking at it briefly, here are some things that we'd need to implement or look into: ``` 00:00:05.000 [tid 1000] syscall(147, ...) = -38...
> > 5: shadow_rs::host::memory_manager::memory_mapper::MemoryMapper::handle_mmap_result > > at /tmp/shadow/src/main/host/memory_manager/memory_mapper.rs:542:34 > > This is a failure to mmap part of _shadow's_ shmem file. I don't know of a reason that could fail...
> Shadow panics when starting the jacktrip process. Shadow receives an EPERM error when calling the memory manager's `mmap_into_shadow`. @sporksmith Any ideas about this one? I'm not sure if this...
Good catch! Our iov support is completely untested at the moment unfortunately: https://github.com/shadow/shadow/blob/31fab8a33e25c5e8df6328b911bce943fffac35f/src/test/tcp/CMakeLists.txt#L6 I might see another issue, where if `iov[i].iov_len == 0` (which I think should be allowed?), then...
> Simulate readv will crash shadow since function _syscallhandler_readvHelper takes mutable and non-mutable memory references at the same time, which cause assertion failures. Specifically, when readv reads from the file,...
We've fixed a lot of readv and writev bugs (including all of the bugs in this issue), now properly support preadv and pwritev, added some tests for sockets and regular...
Thanks, and no problem, I'm sure there are more pressing things to work on. I'll try to take a look at this once the school term is over. Also, the...