summaryrefslogtreecommitdiffstats
path: root/winsup/cygwin/glob.cc
Commit message (Collapse)AuthorAgeFilesLines
* * common.din (issetugid): Export.Corinna Vinschen2015-03-031-1/+0
| | | | | | * glob.cc (issetugid): Drop macro. * sec_auth.cc (issetugid): New exported function. * include/cygwin/version.h (CYGWIN_VERSION_API_MINOR): Bump.
* Throughout, keep function definitions and declarations in sync withCorinna Vinschen2013-11-251-1/+1
| | | | newlib in terms of C99 "restrict" keyword.
* * Merge in cygwin-64bit-branch.Corinna Vinschen2013-04-231-4/+6
|
* * glob.cc: Include winsup.h before anything else.Corinna Vinschen2013-04-161-4/+4
|
* whitespace cleanupChristopher Faylor2012-08-161-3/+3
|
* * glob.cc (MAXPATHLEN): Reinstantiate with a value of 8192.Corinna Vinschen2012-03-071-0/+3
|
* * Makefile.in (clean): Remove non-existant regexp dir.Corinna Vinschen2012-02-131-80/+65
| | | | | | | | | | | | | | | | | * collate.h: New header. (__collate_range_cmp): Declare. (__collate_load_error): Define. * glob.cc: Pull in latest version from FreeBSD. Simplify and reduce Cygwin-specific changes. * regex/regcomp.c: Include collate.h on Cygwin as well. (__collate_range_cmp): Move from here... * nlsfuncs.cc (__collate_range_cmp): ...to here. * miscfuncs.cc (thread_wrapper): Fix typo in comment. (CygwinCreateThread): Take dead zone of Windows stack into account. Change the way how the stack is commited and how to handle guardpages. Explain how and why. * thread.h (PTHREAD_DEFAULT_STACKSIZE): Change definition. Explain why.
* Remove unneeded header files from source files throughout. Update copyrightsChristopher Faylor2009-01-031-2/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | where appropriate. * globals.cc: New file for generic global variables. * mkglobals_h: New file to generate globals.h. * mkstatic: New Script used to build a (currently non-working) static libcygwin_s.a. * Makefile.in: Add unused rule to build a non-working libcygwin_s.a. (DLL_OFILES): Add globals.o. Make all objects rely on globals.h. (globals.h): New target. Generate globals.h. * cygtls.h: Honor new CYGTLS_HANDLE define to control when the HANDLE operator is allowed in _cygtls. * dcrt0.cc: Move most globals to globals.cc. * init.cc: Ditto. * environ.cc (strip_title_path): Remove now-unneeded extern. * fhandler_serial.cc (fhandler_serial::open): Ditto. * pinfo.cc: Ditto. (commune_process): Ditto. * shared.cc: Ditto. * glob.cc: Ditto. * strace.cc: Ditto. * exceptions.cc: Define CYGTLS_HANDLE before including winsup.h. * path.cc (stat_suffixes): Move here. * security.h: Add forward class path_conv declaration. * smallprint.cc (__small_vsprintf): Make a true c++ function. (__small_sprintf): Ditto. (small_printf): Ditto. (console_printf): Ditto. (__small_vswprintf): Ditto. (__small_swprintf): Ditto. * spawn.cc (spawn_guts): Remove _stdcall decoration in favor of regparm. (hExeced): Move to globals.cc * strfuncs.cc (current_codepage): Ditto. (active_codepage): Ditto. * sync.cc (lock_process::locker): Move here from dcrt0.cc. * syscalls.cc (stat_suffixes): Move to path.cc. * tty.cc (tty::create_master): Uncapitalize fatal warning for consistency. * winsup.h: Include globals.h to declare most of the grab bag list of globals which were previously defined here. * mount.h: Move USER_* defines back to shared_info.h. * speclib: Force temporary directory cleanup.
* Remove unneeded header files from source files throughout.Christopher Faylor2008-04-071-8/+0
|
* Add accidentally missing checkins.Corinna Vinschen2007-03-061-0/+1
| | | | | * fhandler.h (fhandler_base::fstat_helper): Add creation time parameter. * glob.cc (stat32_to_stat64): Set st_birthtim to st_mtim.
* Remove extraneous whitespace.Christopher Faylor2007-02-201-3/+3
| | | | | | * pinfo.cc (commune_process): Use default argument to lock_process. * sigproc.cc: Update copyright. * select.cc: Ditto.
* * glob.cc: Update copyright notice with latest from FreeBSD.Christopher Faylor2007-01-131-6/+2
| | | | | (glob0): Use correct type for c variable to propagate previously detected protection.
* * glob.c: Remove.Corinna Vinschen2006-10-171-0/+991
* glob.cc: New file. Latest glob version from FreeBSD plus Cygwin specific changes (__stat64/__stat32, ignore_case_with_glob, drop collate functions). (glob3): Return GLOB_ABORTED in case directory is unreadable and GLOB_ERR is set, as demanded by SUSv3. * glob.h: Import latest version from FreeBSD.