aboutsummaryrefslogtreecommitdiffhomepage
path: root/io.cpp
Commit message (Collapse)AuthorAge
* Make io_buffer_t::out_buffer a raw pointer, initialize in io_buffer_t's ↵Gravatar Cheer Xiao2013-01-17
| | | | constructor
* Make io_data_t pure virtual, its constructor protectedGravatar Cheer Xiao2013-01-17
|
* Split out io_pipe_t, let io_buffer_t inherit itGravatar Cheer Xiao2013-01-17
|
* Convert io_buffer_read to io_buffer_t::readGravatar Cheer Xiao2013-01-17
|
* Convert io_buffer_create to static io_buffer_t::create, make io_buffer_t ↵Gravatar Cheer Xiao2013-01-17
| | | | constructor private
* Convert io_buffer_destroy to ~io_buffer_tGravatar Cheer Xiao2013-01-17
|
* Split out io_buffer_t, make input_redirect in exec() a raw pointerGravatar Cheer Xiao2013-01-17
|
* Split out io_file_tGravatar Cheer Xiao2013-01-17
|
* Split out io_fd_tGravatar Cheer Xiao2013-01-17
|
* Split out io_close_tGravatar Cheer Xiao2013-01-17
|
* Put io_data_t detail printing in virtual io_data_t::printGravatar Cheer Xiao2013-01-17
|
* Revert "Revert shared_ptr<io_data_t> changes until kinks are ironed out"Gravatar Cheer Xiao2013-01-11
| | | | This reverts commit 77f1b1f0fe27778750bb9b9aa53f6bc42d5e5843.
* Revert shared_ptr<io_data_t> changes until kinks are ironed outGravatar ridiculousfish2013-01-04
| | | | | | | | | | | https://github.com/fish-shell/fish-shell/pull/487 Revert "Merge branch 'oo-io' of git://github.com/xiaq/fish-shell into xiaq-oo-io" This reverts commit f3c8f535a48d5fdd518bd60879ade948bc8be7e6, reversing changes made to b02f6cf3bc4343cf3e068dee3cb46de7139a5a27. Also reverts ac023f7588e562a03fdea7fd2feda487f18827c7 and a79d3c680c9548566309121630dadc94e48934c4
* Remove io_duplicate, which is no longer usedGravatar ridiculousfish2013-01-04
|
* Replace some shared_ptrs with const shared_ptr &. Don't use shared_ptr in ↵Gravatar ridiculousfish2013-01-04
| | | | postfork.cpp. Eliminate copy constructor in io_data_t. Simplify some other uses of shared_ptr<io_data_t>
* Convert all io_data_t copying to shared_ptr copying.Gravatar Cheer Xiao2013-01-01
| | | | Copy constructor of io_data_t is removed.
* Use shared_ptr to manage io_data_t*.Gravatar Cheer Xiao2012-12-31
|
* Fix indentation of switch statementsGravatar ridiculousfish2012-11-19
|
* Apply new indentation, brace, and whitespace styleGravatar ridiculousfish2012-11-18
|
* Remove trailing whitespaces and change tabs to spacesGravatar Łukasz Niemier2012-11-18
|
* Restore correct order of IO redirectionsGravatar ridiculousfish2012-08-19
| | | | Fixes https://github.com/fish-shell/fish-shell/issues/281
* Adopt posix_spawn (!)Gravatar ridiculousfish2012-08-15
| | | | | Rewrite IO chains to be a vector of pointers, instead of a linked list Removed io_transmogrify
* Cleaned up lots of typecasts, simplified some string handlingGravatar ridiculousfish2012-08-04
|
* A bunch of changes working towards eliminating all memory allocation after ↵Gravatar ridiculousfish2012-03-08
| | | | fork()
* Final cleanup of io_data_t now that I recognize the bizarre way in which it ↵Gravatar ridiculousfish2012-03-04
| | | | shares output buffers (not sure how this ever worked before)
* Some initial work on removing buffer_t from io_data_tGravatar ridiculousfish2012-03-03
|
* Fixed initialization of va_list variable in debug() in common.cpp, and ↵Gravatar Siteshwar Vashisht2012-02-23
| | | | mismatched new/free() in io.cpp
* Squash a bunch of leaksGravatar ridiculousfish2012-02-21
|
* Some hopefully good changes to get IOs off of hallocGravatar ridiculousfish2012-02-09
|
* Some changes to migrate towards C++ and a multithreaded modelGravatar ridiculousfish2011-12-26
|
* Initial C++ conversionGravatar ridiculousfish2011-12-26