mailing list of musl libc
 help / color / mirror / code / Atom feed
c36b4b6003af532305ac2b461616d219f11f31b2 blob 224 bytes (raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
 
#include <sys/ipc.h>
#include <sys/stat.h>

key_t ftok(const char *path, int id)
{
	struct stat st;
	if (stat(path, &st) < 0) return -1;

	return ((st.st_ino & 0xffff) | ((st.st_dev & 0xff) << 16) | ((id & 0xffu) << 24));
}
debug log:

solving c36b4b60 ...
found c36b4b60 in https://git.vuxu.org/mirror/musl/

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).