allow command to accept "--" separator
[folly.git] / folly / Subprocess.cpp
2018-01-14 Yedidya FeldblumFix copyright lines v2018.01.15.00
2017-10-29 Yedidya FeldblumMove folly/Assume.h
2017-10-21 James Sedgwickmove MemoryMapping, Shell, ThreadId, ThreadName, and...
2017-10-20 Christopher DykesMatch commented argument names with actual names
2017-10-19 Christopher DykesEnsure curly-braces around control-flow
2017-09-24 Yedidya FeldblumLet ProcessReturnCode be publicly constructible v2017.09.25.00
2017-07-31 Yedidya FeldblumConsistency in namespace-closing comments v2017.07.31.00
2017-07-13 Yedidya FeldblumSort #include lines
2017-06-10 Yedidya FeldblumLet SubprocessError inherit std::runtime_error
2017-05-10 Victor LohAdd pollWithRusage to Subprocess
2017-04-12 Aravind AnbuduraiSupport linux namespace clone flags
2017-01-27 Christopher DykesMove the Environment portability header to the stdlib...
2017-01-04 Yedidya Feldblum2017
2016-12-13 Christopher DykesEnable -Wunreachable-code-return
2016-09-16 Dominik Gabiescape `{` in cmd for deprecated `Substring(std::string...
2016-09-15 Dominik Gabiformatting support for `Subprocess::shellify`
2016-09-15 Dominik Gabideprecate `folly::Subprocess(std::string, ...)`
2016-07-29 Yuri PutivskytakeOwnershipOfPipes method releases memory
2016-05-30 Christopher DykesSwitch uses of networking headers to <folly/portability...
2016-05-30 Christopher DykesSwitch uses of <unistd.h> to <folly/portability/Unistd.h>
2016-05-26 Adam Simpkinsadd a default Subprocess constructor
2016-05-25 Adam Simpkinsadd Cursor::peekBytes()
2016-03-23 Yedidya FeldblumUse C++'s standardized [[noreturn]] attribute
2016-03-15 Igor Sugakfolly/subprocess: fix one -Wsign-conversion and clag...
2016-02-25 Christopher DykesCreate a portability header for working with environmen...
2016-02-12 Mark Isaacsonfolly copyright 2015 -> copyright 2016
2015-12-06 Alexey SpiridonovAdd an "after fork, before exec" callback
2015-07-27 Alexey SpiridonovImprove waitpid error handling
2015-06-12 Praveen KumarNeedless temporary gone
2015-05-20 Alexey SpiridonovMake Subprocess movable
2015-05-12 Alexey SpiridonovFactor out pipe methods, add takeOwnershipOfPipes
2015-03-03 Nicholas OrmrodCopyright 2014->2015
2015-02-11 Darren MoSubprocess Process Group Improvements
2014-12-11 Alexey SpiridonovAdd process group leader option
2014-11-08 Daniel SommermannFix -Wsign-compare
2014-09-30 Alan FrindellFix compiler warning in Subprocess
2014-07-25 Alexey SpiridonovA generic line-reading callback for communicate()
2014-07-09 Tudor BosmanSimplify pipe2 / O_CLOEXEC handling in Subprocess.cpp
2014-07-09 Tudor BosmanUse pipe2 in Subprocess; platform-specific config
2014-07-01 Tudor BosmanCodemod: use #include angle brackets in folly and thrift
2014-05-20 Rocky LiuRevert "[folly::Subprocess] Set O_CLOEXEC by default...
2014-05-20 Rocky LiuAlways #define _GNU_SOURCE to pull in pipe2() declarations
2014-05-20 Rocky LiuSet O_CLOEXEC by default when creating pipes to avoid...
2014-05-20 Alexey SpiridonovSmall readability improvements
2014-05-20 Tudor BosmanFix Chatty subprocess test, call callback on hangup
2014-05-20 Andrey GoderUse readNoInt/writeNoInt in folly::Subprocess
2014-04-18 Elizabeth SmithMSVC translation of noreturn attribute
2014-04-18 Alexey SpiridonovChange child's working directory
2014-04-04 Tudor BosmanAdd ability to silence callbacks for Subprocess::commun...
2014-02-06 Louis BrandyCopyright 2013 -> 2014
2013-11-26 Peter GriessGet Subprocess running for Mac OS X
2013-08-28 Lucian Grijincufolly: improve Subprocess::enforce() error message
2013-06-26 Adam Simpkinsrework the Subprocess::communicate() API
2013-05-20 Adam SimpkinsUpdate Subprocess to throw if exec() fails
2013-04-21 Tudor BosmanMake Subprocess::spawn more robust
2013-04-21 Tudor BosmanOptionally, kill subprocess when parent dies
2013-03-19 Tudor BosmanAsyncIO in folly
2013-01-19 Tudor Bosmanset pid_=-1 after wait, actually implement pid()
2013-01-19 Philip Proninfix some of the warning/errors clang 3.1 reports
2013-01-19 Tudor Bosmangraduate IOBuf out of folly/experimental
2012-12-16 Tudor Bosmanints used as flags (bitwise): so C
2012-12-16 Tudor BosmanRetry wait() on EINTR; clean up signal handling
2012-12-16 Tudor BosmanSubprocess library, modeled after python's subprocess...