summaryrefslogtreecommitdiff
path: root/src/GDB.hs-boot
diff options
context:
space:
mode:
authorRoman Smrž <roman.smrz@seznam.cz>2023-01-12 22:45:48 +0100
committerRoman Smrž <roman.smrz@seznam.cz>2023-01-12 22:45:48 +0100
commit20a18716e494d7d83d498cfc4bfd96fa11d6b8ce (patch)
treed1053839aa04bc322665dec3d94fbabe451450e2 /src/GDB.hs-boot
parent1dbecf00a663c8d381abea31c1d317447aa9fb65 (diff)
Move process-related functions to Process module
Diffstat (limited to 'src/GDB.hs-boot')
-rw-r--r--src/GDB.hs-boot2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/GDB.hs-boot b/src/GDB.hs-boot
index 608ba7c..8dd59b4 100644
--- a/src/GDB.hs-boot
+++ b/src/GDB.hs-boot
@@ -1,6 +1,8 @@
module GDB where
import Output
+import {-# SOURCE #-} Process
data GDB
gdbSession :: MonadOutput m => GDB -> m ()
+addInferior :: MonadOutput m => GDB -> Process -> m ()