summaryrefslogtreecommitdiffstats
path: root/include/container.h
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2015-12-29 08:22:32 -0500
committerLibravatar Drew DeVault <sir@cmpwn.com>2015-12-29 08:22:32 -0500
commit5292860b9202336d721089ecc9b0f3906aa47a33 (patch)
tree2ff85443a9587546176620d722028af59388d0da /include/container.h
parentFix use-after-free when closing fullscreen views (diff)
parentHandle SIGTERM sent to sway (diff)
downloadsway-5292860b9202336d721089ecc9b0f3906aa47a33.tar.gz
sway-5292860b9202336d721089ecc9b0f3906aa47a33.tar.zst
sway-5292860b9202336d721089ecc9b0f3906aa47a33.zip
Merge pull request #418 from mikkeloscar/sway-handle-sigterm
Handle SIGTERM sent to sway
Diffstat (limited to 'include/container.h')
-rw-r--r--include/container.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/container.h b/include/container.h
index d76160de..d5126e74 100644
--- a/include/container.h
+++ b/include/container.h
@@ -260,4 +260,9 @@ void add_gaps(swayc_t *view, void *amount);
260 */ 260 */
261void update_visibility(swayc_t *container); 261void update_visibility(swayc_t *container);
262 262
263/**
264 * Close all child views of container
265 */
266void close_views(swayc_t *container);
267
263#endif 268#endif