blob: 47d755c0c536a3ab9eb3949bed4dbb914ceb225d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/***************************************************************************
*
* osspec_solaris.h : definitions for Solaris HAL backend
*
* Copyright 2006 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*
* Licensed under the Academic Free License version 2.1
*
**************************************************************************/
#pragma ident "%Z%%M% %I% %E% SMI"
#ifndef OSSPEC_SOLARIS_H
#define OSSPEC_SOLARIS_H
#include <glib.h>
void hotplug_queue_now_empty (void);
HalDevice *hal_util_find_closest_ancestor (const gchar *devfs_path, gchar **ancestor_devfs_path, gchar **hotplug_devfs_path);
char *dsk_to_rdsk(char *);
#endif /* OSSPEC_SOLARIS_H */
|