/* * 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 #include #include #include #include #include #include #include #include #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; }