summaryrefslogtreecommitdiff
path: root/Kernel/TTY/MasterPTY.h
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-04-16 00:35:02 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-04-16 00:35:02 +0200
commit88f03f86ff4659c9cabd484b1ee37bd044681a26 (patch)
tree13414d68a155089ea048eab9dc10ce5b1cc0254a /Kernel/TTY/MasterPTY.h
parentd384c7815f92d9bd411033f0bc1d92250568b1c4 (diff)
downloadserenity-88f03f86ff4659c9cabd484b1ee37bd044681a26.zip
Kernel: Have TTY subclasses cache their tty_name/pts_name.
Diffstat (limited to 'Kernel/TTY/MasterPTY.h')
-rw-r--r--Kernel/TTY/MasterPTY.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Kernel/TTY/MasterPTY.h b/Kernel/TTY/MasterPTY.h
index fa65522dea..c98dd625f9 100644
--- a/Kernel/TTY/MasterPTY.h
+++ b/Kernel/TTY/MasterPTY.h
@@ -33,4 +33,5 @@ private:
unsigned m_index;
bool m_closed { false };
DoubleBuffer m_buffer;
+ String m_pts_name;
};