source: trunk/packages/xen-3.1/xen-3.1/tools/libxc/xc_physdev.c @ 34

Last change on this file since 34 was 34, checked in by hartmans, 18 years ago

Add xen and xen-common

File size: 626 bytes
Line 
1/******************************************************************************
2 * xc_physdev.c
3 *
4 * API for manipulating physical-device access permissions.
5 *
6 * Copyright (c) 2004, Rolf Neugebauer (Intel Research Cambridge)
7 * Copyright (c) 2004, K A Fraser (University of Cambridge)
8 */
9
10#include "xc_private.h"
11
12int xc_physdev_pci_access_modify(int xc_handle,
13                                 uint32_t domid,
14                                 int bus,
15                                 int dev,
16                                 int func,
17                                 int enable)
18{
19    errno = ENOSYS;
20    return -1;
21}
Note: See TracBrowser for help on using the repository browser.