Ganesan Rajagopal

Results 8 issues of Ganesan Rajagopal

I'm trying the tutorial steps: ``` $ mkdir -p tutorial/rootfs $ cd tutorial # use docker to export busybox into the rootfs directory $ docker export $(docker create busybox) |...

enhancement

### Zig Version 0.10.0 ### Steps to Reproduce and Observed Behavior Compiling the below program results in an error but while the stage1 compiler correctly shows the whole call chain...

bug

### Zig Version 0.10 ### Steps to Reproduce and Observed Behavior This is not an issue with autodoc but an actual documentation issue, so I'm reporting this as a bug....

bug
contributor friendly
docs

### Zig Version 0.11.0 ### Steps to Reproduce and Observed Behavior ``` const std = @import("std"); const mem = std.mem; pub fn main() !void { var gpa = std.heap.GeneralPurposeAllocator(.{}){}; const...

enhancement
contributor friendly
standard library

fentry/fexit is more efficient than kprobes

Recent kernels provide easier access to tracepoint char strings, instead of the __data_loc indirection. ply needs to be updated to handle char * fields directly instead of the roundabout dyn...

The last and only release was back in October 2020!

I was trying a simple oneliner from the dtrace book on a Linux box and got this: ``` # dtrace -n 'syscall:::entry { @sc[execname, probefunc] = count(); }' dtrace: description...