topo_method.h (70818f58) topo_method.h (940d71d2)
1/*
2 * CDDL HEADER START
3 *
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
7 *
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE

--- 19 unchanged lines hidden (view full) ---

28#define _TOPO_METHOD_H
29
30#pragma ident "%Z%%M% %I% %E% SMI"
31
32#ifdef __cplusplus
33extern "C" {
34#endif
35
1/*
2 * CDDL HEADER START
3 *
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
7 *
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE

--- 19 unchanged lines hidden (view full) ---

28#define _TOPO_METHOD_H
29
30#pragma ident "%Z%%M% %I% %E% SMI"
31
32#ifdef __cplusplus
33extern "C" {
34#endif
35
36#include <topo_list.h>
36#include <fm/topo_list.h>
37
38typedef struct topo_imethod {
39 topo_list_t tim_list; /* next/prev pointers */
40 pthread_mutex_t tim_lock; /* method entry lock */
41 pthread_cond_t tim_cv; /* method entry cv */
42 uint_t tim_busy; /* method entry busy indicator */
43 char *tim_name; /* Method name */
44 topo_version_t tim_version; /* Method version */

--- 67 unchanged lines hidden ---
37
38typedef struct topo_imethod {
39 topo_list_t tim_list; /* next/prev pointers */
40 pthread_mutex_t tim_lock; /* method entry lock */
41 pthread_cond_t tim_cv; /* method entry cv */
42 uint_t tim_busy; /* method entry busy indicator */
43 char *tim_name; /* Method name */
44 topo_version_t tim_version; /* Method version */

--- 67 unchanged lines hidden ---