aboutsummaryrefslogtreecommitdiffhomepage
path: root/proc.cpp
Commit message (Collapse)AuthorAge
* Signal handling cleanup and improved safetyGravatar ridiculousfish2012-06-04
| | | | | Fixes issue where you couldn't control-C out of a loop (https://github.com/ridiculousfish/fishfish/issues/13) Also stops doing memory allocation in the signal handler (oops) https://github.com/ridiculousfish/fishfish/issues/27
* Minor cleanup of proc.cppGravatar ridiculousfish2012-04-25
|
* Fix to drain command output from quit commands before returning from ↵Gravatar ridiculousfish2012-04-25
| | | | | | | job_continue This should fix the bug where output from commands and builtins gets incorrectly interleaved. I think this is a very long-standing bug that predates my work on the shell
* Cleanup proc_had_barrierGravatar ridiculousfish2012-03-31
| | | | Ensure we don't try to do a universal barrier off of the main thread
* Fix lots of bugs related to the static analyzerGravatar ridiculousfish2012-03-26
| | | | Improved how screen.cpp interacts with output_set_writer()
* A bunch of changes working towards eliminating all memory allocation after ↵Gravatar ridiculousfish2012-03-08
| | | | fork()
* We had identical format_val and to_string; standardize on to_stringGravatar ridiculousfish2012-03-05
|
* 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
|
* More work towards improving relationship between multithreading and forkGravatar ridiculousfish2012-02-29
|
* More work on improving interaction between fork and pthreads. Added ↵Gravatar ridiculousfish2012-02-29
| | | | null_terminated_array_t class.
* Some initial work towards resolving nasty fork/pthread issues, and to having ↵Gravatar ridiculousfish2012-02-27
| | | | a per-parser job list
* More work towards autosuggesting completionsGravatar ridiculousfish2012-02-25
|
* Removed a lot of string_buffer_tGravatar ridiculousfish2012-02-22
|
* Changes to make autosuggestion smarter about not suggesting commands that ↵Gravatar ridiculousfish2012-02-16
| | | | could never succeed.
* Final removal of halloc. It's like Christmas Morning.Gravatar ridiculousfish2012-02-09
|
* Get event_t off of halloc (!)Gravatar ridiculousfish2012-02-08
|
* Clean up how argv is stored in process_tGravatar ridiculousfish2012-01-31
|
* Fixed compilation errors caused by latest commitsGravatar Siteshwar Vashisht2012-01-30
|
* A bunch of work to move towards a sane memory model in job_tGravatar ridiculousfish2012-01-29
|
* Began migration of job_t away from hallocGravatar ridiculousfish2012-01-29
|
* Convert jobs list to std::listGravatar ridiculousfish2012-01-29
|
* More work towards instanced parser. First successful compilationGravatar ridiculousfish2012-01-22
|
* Get some basic function signatures right for new instanced parserGravatar ridiculousfish2012-01-16
|
* Fix for crash when unescaping a string with unbalanced quotesGravatar ridiculousfish2012-01-02
| | | | Add Mac OS X's default term name to terms for which we know how to set a title
* Migrate to std::vector in event classGravatar ridiculousfish2011-12-27
|
* Some changes to migrate towards C++ and a multithreaded modelGravatar ridiculousfish2011-12-26
|
* Initial C++ conversionGravatar ridiculousfish2011-12-26