diff options
author | phk <phk@FreeBSD.org> | 2003-04-23 20:46:12 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2003-04-23 20:46:12 +0000 |
commit | 3bbfe9f43b9f428fa76cf6b43be961ff03071025 (patch) | |
tree | 2d203b1d0b7761a17e73c3483c4149f9172a544b /sys/geom/geom_int.h | |
parent | f0e2ab20a0f8aec13b4380cbf6075819af64c9a7 (diff) | |
download | FreeBSD-src-3bbfe9f43b9f428fa76cf6b43be961ff03071025.zip FreeBSD-src-3bbfe9f43b9f428fa76cf6b43be961ff03071025.tar.gz |
Rename g_call_me() to g_post_event(), and give it a flag
argument to determine if we can M_WAITOK in malloc.
Diffstat (limited to 'sys/geom/geom_int.h')
-rw-r--r-- | sys/geom/geom_int.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/geom/geom_int.h b/sys/geom/geom_int.h index 567cd7a..23e5597 100644 --- a/sys/geom/geom_int.h +++ b/sys/geom/geom_int.h @@ -58,7 +58,7 @@ extern int g_debugflags; struct g_event { TAILQ_ENTRY(g_event) events; void *arg; - g_call_me_t *func; + g_event_t *func; void *ref[G_N_EVENTREFS]; }; |