Skip to content

Instantly share code, notes, and snippets.

@simias
Created January 11, 2017 11:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save simias/89f94ee780e068b6095d4f1d60bb7dba to your computer and use it in GitHub Desktop.
Save simias/89f94ee780e068b6095d4f1d60bb7dba to your computer and use it in GitHub Desktop.
#include <fcntl.h>
int fd = 0;
int main() {
if (fd == 0) {
fd = open("/toto", O_RDWR);
}
for (;;) {
// fais des trucs avec fd
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment