cachepc-qemu

Fork of AMDESE/qemu with changes for cachepc side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-qemu
Log | Files | Refs | Submodules | LICENSE | sfeed.txt

9p-local.h (480B)


      1/*
      2 * 9p local backend utilities
      3 *
      4 * Copyright IBM, Corp. 2017
      5 *
      6 * Authors:
      7 *  Greg Kurz <groug@kaod.org>
      8 *
      9 * This work is licensed under the terms of the GNU GPL, version 2 or later.
     10 * See the COPYING file in the top-level directory.
     11 */
     12
     13#ifndef QEMU_9P_LOCAL_H
     14#define QEMU_9P_LOCAL_H
     15
     16int local_open_nofollow(FsContext *fs_ctx, const char *path, int flags,
     17                        mode_t mode);
     18int local_opendir_nofollow(FsContext *fs_ctx, const char *path);
     19
     20#endif