Skip to main content
Filter by
Sorted by
Tagged with
-4 votes
0 answers
50 views

#include <stdio.h> #include <string.h> #include <sys/socket.h> #include <netinet/in.h> #include <sys/types.h> #include <netdb.h> #include &...
matthew radon's user avatar
-5 votes
0 answers
81 views

When I run this code: #include <stdio.h> #include <cs50.h> int main(void) { int counter = 0; // Initialitzate counter const int increment_every_time = get_int("What number do ...
user31972567's user avatar
2 votes
0 answers
59 views

I have 2 files: crt.c: const char service_interp[] __attribute__((section(".interp"))) = "${LD_SO}"; extern void _exit (int __status) __attribute__ ((__noreturn__)); int main(); ...
Stas Badzi's user avatar
2 votes
0 answers
67 views

I Am implementing Lockless ring buffer for multiple producer and single consumer (keeping in plan to extend it to multiple produce and consumer) using design reference of dpdk buffer : https://doc....
vinit Tirnagarwar's user avatar
1 vote
1 answer
51 views

I have that code: #include <stdio.h> #include <stdbool.h> #include <unistd.h> #include "esp_system.h" #include "esp_timer.h" #include "freertos/projdefs.h&...
Губин Егор's user avatar
-2 votes
0 answers
78 views

Here is the code: void (*volatile sys_func)(void); void main(int argc, char **argv) { int i, j; for (j = 0; j < 3; ++j) { for (i = 0; i < 10000; ++i); sys_func(); } ...
chav1s's user avatar
  • 37