3 * Manipulates flags on file descriptors
5 * (c) 1999 Straylight/Edgeware
8 /*----- Licensing notice --------------------------------------------------*
10 * This file is part of the mLib utilities library.
12 * mLib is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU Library General Public License as
14 * published by the Free Software Foundation; either version 2 of the
15 * License, or (at your option) any later version.
17 * mLib is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU Library General Public License for more details.
22 * You should have received a copy of the GNU Library General Public
23 * License along with mLib; if not, write to the Free
24 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
28 /*----- Header files ------------------------------------------------------*/
34 /*----- Main code ---------------------------------------------------------*/
36 /* --- @fdflags@ --- *
38 * Arguments: @int fd@ = file descriptor to fiddle with
39 * @unsigned fbic, fxor@ = file flags to set and clear
40 * @unsigned fdbic, fdxor@ = descriptor flags to set and clear
42 * Returns: Zero if successful, @-1@ if not.
44 * Use: Sets file descriptor flags in what is, I hope, an obvious
48 int fdflags(int fd, unsigned fbic, unsigned fxor,
49 unsigned fdbic, unsigned fdxor)
54 if ((f = fcntl(fd, F_GETFL)) == -1)
56 ff = (f & ~fbic) ^ fxor;
57 if (f != ff && fcntl(fd, F_SETFL, ff) == -1)
61 if ((f = fcntl(fd, F_GETFD)) == -1)
63 ff = (f & ~fdbic) ^ fdxor;
64 if (f != ff && fcntl(fd, F_SETFD, ff) == -1)
70 /*----- That's all, folks -------------------------------------------------*/