Skip to content

Instantly share code, notes, and snippets.

@OjaswinM
OjaswinM / atomic_write.c
Created November 30, 2023 09:45
Performing atomic writes using pwritev2() syscall
#define _GNU_SOURCE
#include <stdio.h>
#include <stdlib.h>
#include <fcntl.h>
#include <unistd.h>
#include <sys/uio.h>
#include <errno.h>
#define RWF_ATOMIC (0x00000020)