Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix some copyright dates. | Tavian Barnes | 2010-05-10 | 1 | -1/+1 |
| | |||||
* | Use C99 for loop initializers. | Tavian Barnes | 2010-05-05 | 1 | -3/+2 |
| | |||||
* | Remove a bunch of errno.h includes. | Tavian Barnes | 2010-04-13 | 1 | -1/+0 |
| | |||||
* | New dmnsn_malloc() function, and friends. | Tavian Barnes | 2010-04-07 | 1 | -47/+20 |
| | | | | | | I'm tired of checking for malloc failures everywhere, considering it never happens. So just bail out whenever it does. A lot of stuff is guaranteed to succeed if it returns now. | ||||
* | Set errno on failures. | Tavian Barnes | 2010-04-01 | 1 | -1/+7 |
| | |||||
* | Fix up license blurbs and copyright year. | Tavian Barnes | 2010-01-27 | 1 | -1/+1 |
| | |||||
* | Clean up some dmnsn_new_*() functions. | Tavian Barnes | 2009-10-26 | 1 | -49/+21 |
| | | | | | Rather than special-case every failed memory allocation, just make dmnsn_delete_*() more robust and call it. | ||||
* | Call dmnsn_done_progress() later in dmnsn_finish_progress(). | Tavian Barnes | 2009-10-26 | 1 | -3/+2 |
| | |||||
* | Fix some concurrency mistakes. | Tavian Barnes | 2009-10-26 | 1 | -11/+27 |
| | | | | TODO: eliminate the too_late field on canvases. | ||||
* | Update license copyrights to 2009. | Tavian Barnes | 2009-07-08 | 1 | -1/+1 |
| | |||||
* | Comments and style adjustments, and a couple fixes. | Tavian Barnes | 2009-07-08 | 1 | -4/+4 |
| | |||||
* | Fix progress leak. | Tavian Barnes | 2009-07-01 | 1 | -0/+1 |
| | |||||
* | Remove thread-synchronization from arrays, which was way too slow, and | Tavian Barnes | 2009-06-29 | 1 | -11/+73 |
| | | | | only really needed for dmnsn_progress anyway. | ||||
* | Add lots of comments, and some code fixes discovered in the process. | Tavian Barnes | 2009-06-26 | 1 | -14/+17 |
| | |||||
* | Fix const-correctness issues with dmnsn_progress*. | Tavian Barnes | 2009-06-24 | 1 | -30/+58 |
| | |||||
* | New dmnsn_array_size() thread-safe function. | Tavian Barnes | 2009-06-23 | 1 | -14/+23 |
| | |||||
* | Finish asynchronous PNG interface, and test it in png test. | Tavian Barnes | 2009-06-22 | 1 | -9/+75 |
| | |||||
* | Add interface for performing long tasks in background, while giving a | Tavian Barnes | 2009-06-22 | 1 | -0/+103 |
progress indication. |