aboutsummaryrefslogtreecommitdiff
path: root/Foundation/GTMNSFileHandle+UniqueName.m
Commit message (Collapse)AuthorAge
* Remove obsoleted nonsense symbols for suppressing libtool warningsGravatar Dave MacLachlan2019-11-25
|
* Export unused symbols in category-only files for when they are used in ↵Gravatar Thomas Van Lenten2016-01-12
| | | | static libs to avoid linker warnings
* Fix support for file extensions, due to off-by-1 error from not taking the ↵Gravatar gtm.daemon2014-10-10
| | | | | | | | | | | | | | period into account for the total suffix-length to pass to mkstemps. Example failure: template = myTempXXX.ext pathExtension = "ext" [pathExtension length] = 3 Need for mkstemps: suffix-length = 4 (".ext") DELTA=6 (5 added, 0 deleted, 1 changed) DELTA_BY_EXTENSION=m=6
* [Author: dmaclach]Gravatar gtm.daemon2012-06-21
| | | | | | Add header back in attempt to fix build. TBR=thomasvl DELTA=2 (2 added, 0 deleted, 0 changed)
* [Author: dmaclach]Gravatar gtm.daemon2012-06-21
| | | | | | | | | Clean up some basic issues in GTM. Also removes GTMUniqueFileObjectPathBasedOn which depended on mktemp which is bad. R=thomasvl DELTA=55 (6 added, 32 deleted, 17 changed)
* [Author: dmaclach]Gravatar gtm.daemon2010-07-26
Added GTMNSFileHandle+UniqueName for easily and safely creating temporary files and unique directory names. Modified some tests to use the new calls. R=thomasvl DELTA=420 (397 added, 16 deleted, 7 changed)