-
Notifications
You must be signed in to change notification settings - Fork 26
thread_pool improvements: jthread, stop, lazy #86
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -26,8 +26,7 @@ project | |
| <target-os>darwin,<undefined-sanitizer>norecover:<link>static | ||
| ; | ||
|
|
||
| # Exclude buffers/ which has its own Jamfile | ||
| for local f in [ glob-tree-ex . : *.cpp : file*.cpp buffers ] | ||
| for local f in [ glob-tree-ex . : *.cpp : file*.cpp ] | ||
| { | ||
| run $(f) ; | ||
| } | ||
|
Comment on lines
+29
to
32
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chain🏁 Script executed: #!/bin/bash
# Search for any remaining buffers-specific configuration in Jamfiles
rg -n --glob 'Jamfile*' -C2 'buffers'Repository: cppalliance/capy Length of output: 42 🏁 Script executed: #!/bin/bash
# Check the current structure of test/unit directory
fd --type f 'Jamfile*' test/unit | head -20Repository: cppalliance/capy Length of output: 77 🏁 Script executed: #!/bin/bash
# Get the content of test/unit/Jamfile to see the full context
cat test/unit/JamfileRepository: cppalliance/capy Length of output: 1274 🏁 Script executed: #!/bin/bash
# Check for any buffers subdirectory and its contents
fd --type f '\.(cpp|h)$' test/unit/buffers 2>/dev/null | head -20Repository: cppalliance/capy Length of output: 694 🏁 Script executed: #!/bin/bash
# List all subdirectories in test/unit to see the current structure
fd --type d . test/unit | head -20Repository: cppalliance/capy Length of output: 195 🏁 Script executed: #!/bin/bash
# Check git history for buffers/Jamfile
git log --oneline --all -- 'test/unit/buffers/Jamfile' 2>/dev/null | head -10Repository: cppalliance/capy Length of output: 188 🏁 Script executed: #!/bin/bash
# Search for any comments or notes about buffers consolidation
rg -n 'buffers' test/unit/JamfileRepository: cppalliance/capy Length of output: 42 🏁 Script executed: #!/bin/bash
# Check if there are any special dependencies or requirements mentioned in buffers test files
rg -l 'boost/filesystem|requirements' test/unit/buffers/*.cpp | head -5Repository: cppalliance/capy Length of output: 42 🏁 Script executed: #!/bin/bash
# Check the commits that touched buffers/Jamfile to see what was there
git show a915f4d:test/unit/buffers/Jamfile 2>/dev/null || echo "File not in that commit"
git show 3e0ebab:test/unit/buffers/Jamfile 2>/dev/null || echo "File not in that commit"Repository: cppalliance/capy Length of output: 1994 🏁 Script executed: #!/bin/bash
# Check if buffers/Jamfile still exists
ls -la test/unit/buffers/Jamfile 2>/dev/null || echo "Jamfile does not exist in buffers"Repository: cppalliance/capy Length of output: 93 🏁 Script executed: #!/bin/bash
# Check the diff of the commit that may have removed it
git show --stat a915f4d | grep -i jamfileRepository: cppalliance/capy Length of output: 242 🏁 Script executed: #!/bin/bash
# Check if buffers tests include ASIO headers
rg 'boost/asio|boost.asio' test/unit/buffers/ 2>/dev/null | head -10Repository: cppalliance/capy Length of output: 119 🏁 Script executed: #!/bin/bash
# Check the asio.cpp test specifically
cat test/unit/buffers/asio.cppRepository: cppalliance/capy Length of output: 5304 Add ASIO library dependency for buffers tests. The consolidation removed the 🤖 Prompt for AI Agents |
||
|
|
@@ -40,5 +39,3 @@ for local f in [ glob-tree-ex . : file*.cpp ] | |
| <warnings>off <undefined-sanitizer>norecover:<link>static | ||
| ; | ||
| } | ||
|
|
||
| build-project buffers ; | ||
This file was deleted.
Uh oh!
There was an error while loading. Please reload this page.