diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2025-02-13 14:05:25 +0200 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2025-02-13 14:05:25 +0200 |
commit | b4eb01f725d60734cbe069aa8bfcd32779845cdc (patch) | |
tree | b04e1c8cb396ecc39e964c3cf934efa39bbd2a3e /libbuild2/build/script/script.hxx | |
parent | 84c13fe970101b6f0b1c0510f80c445f2ab9540a (diff) |
Make script implementations to provide sleep builtin implementation
Diffstat (limited to 'libbuild2/build/script/script.hxx')
-rw-r--r-- | libbuild2/build/script/script.hxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libbuild2/build/script/script.hxx b/libbuild2/build/script/script.hxx index 08f1bf4..19f6d0b 100644 --- a/libbuild2/build/script/script.hxx +++ b/libbuild2/build/script/script.hxx @@ -189,6 +189,11 @@ namespace build2 virtual void create_temp_dir () override; + // Call the scheduler's sleep() function. + // + virtual void + sleep (const duration&) override; + // Variables. // public: |