Skip to content
Snippets Groups Projects
Select Git revision
  • f5a35ac8f17e49c9984f09b0fdf30f54dce8714c
  • master default protected
2 results

Variabeln.PNG

Blame
  • shm-1a.c 175 B
    #include <sys/mman.h>
    #include <fcntl.h>
    #include <unistd.h>
    
    int main (void)
    {
      int shm = shm_open ("test", O_RDWR, 0666);
      write (shm, "Hello, world!", 13);
      return 0;
    }