Klemens Morgenstern
abd052e09f
xproc fixes
2023-02-20 14:09:38 +08:00
Klemens Morgenstern
9682056278
Typo fix.
2023-02-20 14:09:37 +08:00
Klemens
062ac9beb2
Added limit_fd functionality
2022-06-05 01:55:28 +08:00
Klemens
3163496b70
Added documentation
2022-06-04 21:19:40 +08:00
Klemens Morgenstern
610b337fa3
Drone & Multple fix ( #250 )
...
Squash after invalid branch & merge conflict.
* Fixed file_descriptor move assignment operator to return a reference to 'this'. Issue # 219
* Returning *this instead of erroneous *this. Issue # 219
* Removed unneeded WNOHANG.
* Closes boostorg/process#190
* Closes boostorg/process#121
* Attempting to fix wchar_t build error on circle.
* Closes boostorg/process#197 .
* Changed child(pid_t) signature.
* Multiple fixes.
* Closes boostorg/process#189 .
* Closes boostorg/process#191 .
* Added missing work guard on windows.
* Trying to catch windows early complete.
* Increased log level on windows.
* Multiple windows test fixes
* Removed overly constraint tests.
* fix missing headers
* Closes klemens-morgenstern/boost-process#218
* Update executor.hpp
explicit cast to int to silence this: `error: non-constant-expression cannot be narrowed from type 'unsigned long' to 'int' in initializer list [-Wc++11-narrowing]`
* Fix posix implementation of move constructor/assignment in file_descriptor
* Adjust docs `@boost` relative paths
* Fixed UB for large environment names.
* Closes boostorg/process#207 .
* Drone setup
* Added include for filesystem::fstream.
* Disabled useless tests.
* Fixed environment length checks.
* Pipe test & warning fixes.
* Disabled warnings & added windows include fix.
* More test fixes.
* Removed some tests from apple build.
* Removed some tests from apple build.
* Disabled OSX tests via build script & fixed windows examples.
* TSA fix attempt.
Co-authored-by: James Baker <james.baker@bullochtech.com >
Co-authored-by: silent <silent@symica.com >
Co-authored-by: ikrijan <62850248+ikrijan@users.noreply.github.com >
Co-authored-by: Shauren <shauren.trinity@gmail.com >
Co-authored-by: alandefreitas <alandefreitas@gmail.com >
2022-05-19 17:00:15 +08:00
alandefreitas
a3e8600e40
Adjust docs @boost relative paths
2021-12-28 19:41:40 -03:00
Klemens David Morgenstern
6d10c3a807
Merge branch 'develop' of github.com:klemens-morgenstern/boost-process into develop
2020-01-26 15:18:00 +07:00
Klemens Morgenstern
590cc10b42
Merge pull request #75 from brunom/patch-1
...
typo
2020-01-26 15:15:07 +07:00
Daniel Evers
dd003bf2b0
Correct some typos etc.
2020-01-05 17:33:59 +01:00
Klemens David Morgenstern
6dd3e0bdb4
typo fix, closes klemens-morgenstern/boost-process#210
2019-11-22 12:50:40 +08:00
Klemens David Morgenstern
2a954eb809
Merge branch 'develop' into win_pipe_unlimited_instances
2019-05-09 11:24:14 +07:00
Klemens David Morgenstern
caa7b2fcc8
two minor fixes
2019-05-08 16:28:54 +07:00
Klemens David Morgenstern
849b5d0f30
Closes boostorg/process#84 and boostorg/process#83
2019-05-07 10:59:50 +07:00
Bruno Martinez
192191ecfb
typo
2019-03-05 12:30:06 -03:00
Klemens David Morgenstern
97f08ba0b3
Merge remote-tracking branch 'remotes/origin/master' into develop
...
# Conflicts:
# doc/tutorial.qbk
2018-12-14 12:17:17 +07:00
Klemens David Morgenstern
69c04d5e29
updated doc to say io_context instead of io_service
2018-10-26 10:55:28 +07:00
Klemens David Morgenstern
9b1b83f5e7
Merge branch 'develop' of github.com:boostorg/process into develop
2018-10-26 10:38:46 +07:00
tnixeu
d7accdcf0c
fixes some string replacements issues in doc. Some replacements caused wrong namespaces.
2018-10-20 13:04:17 +02:00
tnixeu
d159fea7b8
removes boost::asio:: from example in doc
2018-10-20 11:50:45 +02:00
K. R. Walker
2576ed166f
Fix warnings: decl. of 'x' hides class member
...
Address C4458 warnings when compiled with Visual C++
2018-09-26 16:54:46 -06:00
Klemens Morgenstern
f00895a9fc
Update tutorial.qbk
...
closes #49
2018-09-11 14:38:49 +08:00
Klemens David Morgenstern
d709c1cd07
fixed tutorial example type
2018-06-18 09:46:15 +08:00
Malcolm Parsons
751af041cd
Fix grammar in tutorial
2018-02-22 10:29:59 +00:00
Alex Merry
92ee239891
Only reap children we are watching for when handling SIGCHLD
...
There may be other io_context instances with child instances, and child
instances with no associated io_context. If we pass 0 to ::waitpid(), we
will reap their processes as well, without updating the state of the
corresponding child instance.
Instead, we call `::waitpid` once for each child we are watching for.
This has some amount of overhead (multiple system calls), but ensures
correct behaviour (providing nothing other than an asio::signal_set is
watching for SIGCHLD).
2018-02-20 14:32:33 +00:00
David Mugnai
f2e8776965
update the code snippets to reflect the doc
2018-01-23 23:35:54 +01:00
Gevorg Voskanyan
90adf118ac
s/a environment/an environment
2017-10-22 22:30:24 +04:00
Klemens Morgenstern
3992965359
Update extend.qbk
2017-08-02 09:36:53 +02:00
Klemens Morgenstern
71c2fad8ce
Update extend.qbk
2017-08-02 09:33:36 +02:00
Thomas Riccardi
9ed2ebef27
Fix some typos.
2017-05-22 11:14:29 +02:00
klemens-morgenstern
34377ecad0
typo fixes
2017-04-25 21:02:16 +02:00
klemens-morgenstern
ed15395f6d
fixed example error, closes #87
2017-04-23 17:42:02 +02:00
klemens-morgenstern
ba14d9f870
Normalize all the line endings
2017-04-23 14:48:16 +02:00
klemens-morgenstern
3a733827eb
closes #74
2017-03-16 10:41:51 +01:00
klemens-morgenstern
6b433c8788
doc update
2017-03-02 14:16:38 +01:00
klemens-morgenstern
caa7348827
added search_path remark to documentation
2017-02-20 22:14:35 +01:00
klemens-morgenstern
d1ae99bd1b
updated process/doc
2017-01-16 20:32:49 +01:00
klemens-morgenstern
ca1c83cee9
hopefully fixed the xml workaround
2017-01-13 10:44:58 +01:00
klemens-morgenstern
5e969baf6b
added workaround for xml inclusion
2017-01-13 01:33:28 +01:00
klemens-morgenstern
ff1a090026
added targets for release doc
2017-01-12 20:11:04 +01:00
klemens-morgenstern
1b737392d0
doc update - added a concepts section
2016-12-05 18:40:42 +01:00
klemens-morgenstern
db948e46cb
doc update
2016-12-05 16:04:41 +01:00
klemens-morgenstern
43fae9108d
added documentation for the extensions
2016-12-03 02:11:09 +01:00
klemens-morgenstern
fb73448cb7
added documentation for extend
2016-12-02 18:28:00 +01:00
klemens-morgenstern
90f20addd7
removed unessecary statics
2016-11-30 01:17:14 +01:00
klemens-morgenstern
0175969096
small doc fix
2016-10-31 11:10:45 +01:00
klemens-morgenstern
1b46000813
added note for cmd style on windows
2016-10-28 19:44:59 +02:00
klemens-morgenstern
f70a609976
added more precise description for some details
2016-10-28 19:34:39 +02:00
klemens-morgenstern
58023d7591
added more clarification for std::error_code
2016-10-28 19:25:34 +02:00
klemens-morgenstern
d1f2685003
added changes to doc proposed by @teeks99
2016-10-28 19:24:35 +02:00
klemens-morgenstern
e9a7dcbe89
updated doc, closes #38
2016-10-28 19:20:43 +02:00