aboutsummaryrefslogtreecommitdiffstats
path: root/offsets.c
blob: b77c7fd95cd2d2774da085b89c5f686a0c1212df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/*
 * offsets.c, print offsets in pseudo_ipc structure
 *
 * Copyright (c) 2008-2010 Wind River Systems, Inc.
 *
 * SPDX-License-Identifier: LGPL-2.1-only
 *
 */
#ifndef _LARGEFILE64_SOURCE
#define _LARGEFILE64_SOURCE
#endif
#include <stdio.h>
#include <sys/stat.h>
#include <unistd.h>
#include <fcntl.h>
#include <errno.h>
#include <stdlib.h>
#include <sys/stat.h>
#include <stdio.h>
#include <stddef.h>

#include "pseudo.h"
#include "pseudo_ipc.h"

int
main(void) {
	printf("type: %d\n", (int) offsetof(pseudo_msg_t, type));
	printf("op: %d\n", (int) offsetof(pseudo_msg_t, op));
	printf("result: %d\n", (int) offsetof(pseudo_msg_t, result));
	printf("access: %d\n", (int) offsetof(pseudo_msg_t, access));
	printf("client: %d\n", (int) offsetof(pseudo_msg_t, client));
	printf("dev: %d\n", (int) offsetof(pseudo_msg_t, dev));
	printf("ino: %d\n", (int) offsetof(pseudo_msg_t, ino));
	printf("uid: %d\n", (int) offsetof(pseudo_msg_t, uid));
	printf("gid: %d\n", (int) offsetof(pseudo_msg_t, gid));
	printf("mode: %d\n", (int) offsetof(pseudo_msg_t, mode));
	printf("rdev: %d\n", (int) offsetof(pseudo_msg_t, rdev));
	printf("pathlen: %d\n", (int) offsetof(pseudo_msg_t, pathlen));
	printf("nlink: %d\n", (int) offsetof(pseudo_msg_t, nlink));
	printf("deleting: %d\n", (int) offsetof(pseudo_msg_t, deleting));
	printf("path: %d\n", (int) offsetof(pseudo_msg_t, path));
	printf("size: %d\n", (int) sizeof(pseudo_msg_t));
	return 0;
}