Skip to content

Commit

Permalink
Add process monitor
Browse files Browse the repository at this point in the history
Signed-off-by: Alan Jowett (from Dev Box) <[email protected]>
  • Loading branch information
Alan-Jowett committed Mar 1, 2024
1 parent 51d8d9d commit a9c8de6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/sample/process_monitor.c
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ bounded_memcpy(uint8_t* destination, const uint8_t* source, uint32_t destination
{
// Prevail verifier doesn't correctly compute the number of iterations in the loop.
// Unroll the loop to avoid the verifier error.
// Issue: #<to be determined>
// Issue: https://github.com/vbpf/ebpf-verifier/issues/441
#pragma unroll
for (uint32_t index = 0; index < BOUNDED_MEMCPY_LIMIT; index++) {
if (index < destination_size && index < source_size) {
Expand Down

0 comments on commit a9c8de6

Please sign in to comment.