diff options
author | Roman Smrž <roman.smrz@seznam.cz> | 2023-01-12 22:45:48 +0100 |
---|---|---|
committer | Roman Smrž <roman.smrz@seznam.cz> | 2023-01-12 22:45:48 +0100 |
commit | 20a18716e494d7d83d498cfc4bfd96fa11d6b8ce (patch) | |
tree | d1053839aa04bc322665dec3d94fbabe451450e2 /src/GDB.hs-boot | |
parent | 1dbecf00a663c8d381abea31c1d317447aa9fb65 (diff) |
Move process-related functions to Process module
Diffstat (limited to 'src/GDB.hs-boot')
-rw-r--r-- | src/GDB.hs-boot | 2 |
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 () |