- remove emacs layout block as suggested by Robert P.J. Day
[oweals/busybox.git] / libbb / device_open.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Utility routines.
4  *
5  * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
6  *
7  * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
8  */
9
10 #include <stdio.h>
11 #include <fcntl.h>
12 #include "libbb.h"
13
14
15 /* try to open up the specified device */
16 int device_open(const char *device, int mode)
17 {
18         int m, f, fd = -1;
19
20         m = mode | O_NONBLOCK;
21
22         /* Retry up to 5 times */
23         for (f = 0; f < 5; f++)
24                 if ((fd = open(device, m, 0600)) >= 0)
25                         break;
26         if (fd < 0)
27                 return fd;
28         /* Reset original flags. */
29         if (m != mode)
30                 fcntl(fd, F_SETFL, mode);
31         return fd;
32 }