ftok.c (7f3dea244c40159a41ab22da77a434d7c5b5e85a) | ftok.c (ea8d448a923f0d68d7ecf1d2a0583c7d17bdee4e) |
---|---|
1/* 2 * Copyright (c) 1994 SigmaSoft, Th. Lockert <tholo@sigmasoft.com> 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright --- 11 unchanged lines hidden (view full) --- 20 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 21 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; 22 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 23 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR 24 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF 25 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 26 */ 27 | 1/* 2 * Copyright (c) 1994 SigmaSoft, Th. Lockert <tholo@sigmasoft.com> 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright --- 11 unchanged lines hidden (view full) --- 20 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 21 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; 22 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 23 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR 24 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF 25 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 26 */ 27 |
28#if defined(LIBC_SCCS) && !defined(lint) 29static char *rcsid = "$FreeBSD$"; 30#endif /* LIBC_SCCS and not lint */ | 28#include <sys/cdefs.h> 29__FBSDID("$FreeBSD$"); |
31 32#include <sys/types.h> 33#include <sys/stat.h> 34#include <sys/ipc.h> 35 36key_t 37ftok(path, id) 38 const char *path; 39 char id; 40{ 41 struct stat st; 42 43 if (stat(path, &st) < 0) 44 return (key_t)-1; 45 46 return (key_t) (id << 24 | (st.st_dev & 0xff) << 16 | (st.st_ino & 0xffff)); 47} | 30 31#include <sys/types.h> 32#include <sys/stat.h> 33#include <sys/ipc.h> 34 35key_t 36ftok(path, id) 37 const char *path; 38 char id; 39{ 40 struct stat st; 41 42 if (stat(path, &st) < 0) 43 return (key_t)-1; 44 45 return (key_t) (id << 24 | (st.st_dev & 0xff) << 16 | (st.st_ino & 0xffff)); 46} |