From 2ef5f4c72c948dc0990bdd6381540ef07a762893 Mon Sep 17 00:00:00 2001
From: Jason Volk <jason@zemos.net>
Date: Tue, 6 Mar 2018 03:50:39 -0800
Subject: [PATCH] ircd::ctx: Rename notify to expose.

---
 include/ircd/ctx/view.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/include/ircd/ctx/view.h b/include/ircd/ctx/view.h
index 9eb24fdc4..bcd25d4b9 100644
--- a/include/ircd/ctx/view.h
+++ b/include/ircd/ctx/view.h
@@ -49,7 +49,7 @@ class ircd::ctx::view
 	template<class lock> T &wait(lock &);
 
 	// Producer interface;
-	void notify(T &);
+	void expose(T &);
 
 	view() = default;
 	~view() noexcept;
@@ -66,7 +66,7 @@ noexcept
 template<class T,
          class mutex>
 void
-ircd::ctx::view<T, mutex>::notify(T &t)
+ircd::ctx::view<T, mutex>::expose(T &t)
 {
 	if(!waiting)
 		return;