diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2013-08-29 02:54:38 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2013-08-29 02:54:38 +0000 |
commit | 7280ce941e6fd0e51b577b44b49eeff891484ceb (patch) | |
tree | d399701999616e5ca3974a0d6eccc057dd307873 /sys/scsi/scsiconf.h | |
parent | f633f78f2a4eb33688e4356f6c0f5ff0ef55ed25 (diff) |
rename scsi_sem_{enter,leave} to scsi_pending_{start,finish}. these are
the wrappers around handling of pending work, theyre not semaphores.
names from tedu@
ok krw@ guenther@
Diffstat (limited to 'sys/scsi/scsiconf.h')
-rw-r--r-- | sys/scsi/scsiconf.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/scsi/scsiconf.h b/sys/scsi/scsiconf.h index 03c2e22f56b..7dbe60509b2 100644 --- a/sys/scsi/scsiconf.h +++ b/sys/scsi/scsiconf.h @@ -1,4 +1,4 @@ -/* $OpenBSD: scsiconf.h,v 1.155 2013/08/26 01:37:13 dlg Exp $ */ +/* $OpenBSD: scsiconf.h,v 1.156 2013/08/29 02:54:37 dlg Exp $ */ /* $NetBSD: scsiconf.h,v 1.35 1997/04/02 02:29:38 mycroft Exp $ */ /* @@ -570,8 +570,8 @@ int scsi_xsh_del(struct scsi_xshandler *); /* * utility functions */ -int scsi_sem_enter(struct mutex *, u_int *); -int scsi_sem_leave(struct mutex *, u_int *); +int scsi_pending_start(struct mutex *, u_int *); +int scsi_pending_finish(struct mutex *, u_int *); /* * Utility functions for SCSI HBA emulation. |