]> sourceware.org Git - newlib-cygwin.git/log
newlib-cygwin.git
20 years ago* sigproc.cc (wait_sig_inited): Remove assertion since it is racy.
Christopher Faylor [Mon, 8 Sep 2003 21:10:23 +0000 (21:10 +0000)]
* sigproc.cc (wait_sig_inited): Remove assertion since it is racy.

20 years ago * cygwin.din: Export endusershell, getusershell and setusershell.
Corinna Vinschen [Mon, 8 Sep 2003 20:08:53 +0000 (20:08 +0000)]
* cygwin.din: Export endusershell, getusershell and setusershell.
* syscalls.cc (getusershell): New function.
(setusershell): Ditto.
(endusershell): Ditto.
* include/cygwin/version.h: Bump API minor number.

20 years ago2003-09-08 Justin Forest <vhex@users.sourceforge.net>
Danny Smith [Mon, 8 Sep 2003 10:35:56 +0000 (10:35 +0000)]
2003-09-08  Justin Forest <vhex@users.sourceforge.net>

* include/winuser.h (PM_QS_INPUT, PM_QS_POSTMESSAGE,
PM_QS_PAINT, PM_QS_SENDMESSAGE): Add defines.

2003-09-08  Filip Navara  <xnavara@volny.cz>

* include/wingdi.h (GRADIENT_FILL_RECT_H, GRADIENT_FILL_RECT_V,
GRADIENT_FILL_TRIANGLE, GRADIENT_FILL_OP_FLAG): Add defines.

20 years ago * cygwin.din: Export argz_add argz_add_sep argz_append argz_count
Corinna Vinschen [Mon, 8 Sep 2003 08:53:01 +0000 (08:53 +0000)]
* cygwin.din: Export argz_add argz_add_sep argz_append argz_count
argz_create argz_create_sep argz_delete argz_extract argz_insert
argz_next argz_replace argz_stringify envz_add envz_entry envz_get
envz_merge envz_remove envz_strip
* include/cygwin/version.h: Bump api minor number.

20 years agofix typo
Christopher Faylor [Mon, 8 Sep 2003 05:09:13 +0000 (05:09 +0000)]
fix typo

20 years ago* Makefile.in (zlib_h): Rename libz.h -> zlib.h.
Christopher Faylor [Mon, 8 Sep 2003 04:29:34 +0000 (04:29 +0000)]
* Makefile.in (zlib_h): Rename libz.h -> zlib.h.

20 years agoThroughout, remove __d_u.__d_data fields from DIR structure.
Christopher Faylor [Mon, 8 Sep 2003 04:04:19 +0000 (04:04 +0000)]
Throughout, remove __d_u.__d_data fields from DIR structure.
* include/sys/dirent.h (dirent): Remvoe old_d_ino.
(DIR): Make __d_dirhash a 64 bit value.  Remove __d_data and __d_u.  Add
__flags.
* dir.cc (opendir_states): New enum.
(opendir): Clear new DIR __flags field.
(readdir): Fill in '.' and '..' entries if we hit EOF and we haven't seen them
already.  Nuke setting of old_d_ino.
(rewinddir): Reset DIR __flags field.
(seekdir64): Ditto.
* fhandler_disk_file.cc (fhandler_cygdrive::fhandler_cygdrive): Remove special
handling of "." and ".." since they are now handled automatically.

20 years ago* Makefile.in: Detect existence of mingw zlib headers and libraries. Build
Christopher Faylor [Mon, 8 Sep 2003 02:50:02 +0000 (02:50 +0000)]
* Makefile.in: Detect existence of mingw zlib headers and libraries.  Build
cygcheck wihtout package checking if they are unavailable.
* dump_setup.cc: Generate dummy zlib macros when zlib is not available.
(open_package_list): Use zlib functions to uncompress package lists.  Return
gzFile rather than FILE *.
(check_package_files): Change fp to gzFile to accommodate zlib functions.  Use
gzgets to read from package file.  Use gzclose to close the handle.
(package_list): Ditto.
(package_find): Ditto.

20 years ago* include/cygwin/in.h: Don't define ipv6 stuff unless we call for it
Christopher Faylor [Mon, 8 Sep 2003 00:26:26 +0000 (00:26 +0000)]
* include/cygwin/in.h: Don't define ipv6 stuff unless we call for it
specifically since it isn't really implemented yet.

20 years ago* cygheap.cc (_csbrk): More left coercion cleanup.
Christopher Faylor [Sun, 7 Sep 2003 18:27:54 +0000 (18:27 +0000)]
* cygheap.cc (_csbrk): More left coercion cleanup.
* fhandler_tty.cc (fhandler_tty_slave::read): Ditto.
(fhandler_tty_slave::write): Ditto.
* fhandler_windows.cc (fhandler_windows::read): Ditto.
* heap.cc (sbrk): Ditto.

20 years ago* signal.cc (nanosleep): Improve test for valid values. Round delay up to
Christopher Faylor [Sun, 7 Sep 2003 05:18:01 +0000 (05:18 +0000)]
* signal.cc (nanosleep): Improve test for valid values.  Round delay up to
resolution.  Fix test for negative remainder.  Use timeGetTime through gtod.
(sleep): Round up return value.  Christopher Faylor <cgf@redhat.com>
* hires.h (HIRES_DELAY_MAX): Define.
(hires_ms::minperiod): Declare static.
(hires_ms::resolution): New.
(hires_ms::dmsecs): New.
(hires_ms::prime): Return UINT.
(gtod): Declare.
* times.cc (hires_ms::prime): Always calculate minperiod and set it to 1 in
case of failure.  Return minperiod.
(hires_ms::resolution): Define.
(hires_ms::~hires_ms): Delete.
(hires_ms::usecs): Check minperiod to prime.
(gtod) Define as global.

20 years agoRemove left coercion throughout.
Christopher Faylor [Sun, 7 Sep 2003 02:22:58 +0000 (02:22 +0000)]
Remove left coercion throughout.

20 years ago* hires.h (hires_ms::~hires_ms): Delete declaration.
Christopher Faylor [Sat, 6 Sep 2003 02:14:06 +0000 (02:14 +0000)]
* hires.h (hires_ms::~hires_ms): Delete declaration.
* times.cc (hires_ms::~hires_ms): Delete definition..

20 years ago* dump_setup.cc (check_package_files): Don't fail on empty package.
Christopher Faylor [Sat, 6 Sep 2003 02:02:30 +0000 (02:02 +0000)]
* dump_setup.cc (check_package_files): Don't fail on empty package.

20 years ago * include/w32api.h (_NT5, etc): Reverse the changes of 2003-07-01.
Earnie Boyd [Fri, 5 Sep 2003 19:41:22 +0000 (19:41 +0000)]
* include/w32api.h (_NT5, etc): Reverse the changes of 2003-07-01.
* include/winbase.h (_NT5, etc): Ditto.

20 years ago2003-09-05 Jeff Johnston <jjohnstn@redhat.com>
Jeff Johnston [Fri, 5 Sep 2003 18:22:00 +0000 (18:22 +0000)]
2003-09-05  Jeff Johnston  <jjohnstn@redhat.com>

        * libc/stdlib/exit.c (exit): Setting of struct _atexit ptr p
        is different for _REENT_SMALL than when using regular reent
        struct.

20 years ago * libc/ctype/wctype.c (_DEFUN): Remove empty default case, as
Ben Elliston [Fri, 5 Sep 2003 02:21:41 +0000 (02:21 +0000)]
* libc/ctype/wctype.c (_DEFUN): Remove empty default case, as
modern versions of GCC issue a warning.

20 years ago* dcrt0.cc (__argc_safe): New variable.
Christopher Faylor [Fri, 5 Sep 2003 01:55:01 +0000 (01:55 +0000)]
* dcrt0.cc (__argc_safe): New variable.
(dll_crt0_1): Store argc in __argc_safe, which will theoretically remain
untouched by the user.
* fhandler_console.cc (fhandler_console::read): Silence some compiler warnings.
* fhandler_raw.cc (fhandler_dev_raw::raw_read): Ditto.
* pinfo.cc (_pinfo::commune_recv): Carefully bound argv scan and check for
potentially bad pointers since user could have set argv cell to anythinw.
* cygheap.h (CYGHEAPSIZE): Bump up size.

20 years agoFix mail address in most recent commit.
Ben Elliston [Fri, 5 Sep 2003 00:48:01 +0000 (00:48 +0000)]
Fix mail address in most recent commit.

20 years ago * libc/machine/xscale/memcmp.c (memcmp): Strip trailing whitespace
Ben Elliston [Fri, 5 Sep 2003 00:45:54 +0000 (00:45 +0000)]
* libc/machine/xscale/memcmp.c (memcmp): Strip trailing whitespace
after continuation characters that induces a warning from modern
versions of GCC.

20 years ago * libc/stdlib/mstats.c[_ELIX_LEVEL]: Fix guards. #ifndef FOO ||
Ben Elliston [Fri, 5 Sep 2003 00:13:15 +0000 (00:13 +0000)]
* libc/stdlib/mstats.c[_ELIX_LEVEL]: Fix guards.  #ifndef FOO ||
FOO >= 2 is invalid; use #if !defined (FOO) || FOO >= 2 instead.

20 years ago* configure: Regenerate.
DJ Delorie [Thu, 4 Sep 2003 22:53:35 +0000 (22:53 +0000)]
* configure: Regenerate.

20 years agoMatch GNU/KFreeBSD with new kfreebsd*-gnu triplet.
Nick Clifton [Thu, 4 Sep 2003 12:33:44 +0000 (12:33 +0000)]
Match GNU/KFreeBSD with new kfreebsd*-gnu triplet.

20 years agoAdd binutils support for v850e1 processor
Nick Clifton [Thu, 4 Sep 2003 11:04:37 +0000 (11:04 +0000)]
Add binutils support for v850e1 processor

20 years ago * sysconf.cc (sysconf): Return more accurate value for _SC_AVPHYS_PAGES.
Corinna Vinschen [Thu, 4 Sep 2003 10:57:58 +0000 (10:57 +0000)]
* sysconf.cc (sysconf): Return more accurate value for _SC_AVPHYS_PAGES.

20 years ago * mmap.cc: Restructure. Add, remove and rewrite comments throughout
Corinna Vinschen [Thu, 4 Sep 2003 10:27:51 +0000 (10:27 +0000)]
* mmap.cc: Restructure. Add, remove and rewrite comments throughout
for better readability.  Change function names for better
understanding.
(MAP_SET): Accomodate name change from map_map_ to page_map_.
(MAP_CLR): Ditto.
(MAP_ISSET): Ditto.
(mmap_record::page_map_): Rename from page_map_.
(mmap_record::get_map): Remove.
(mmap_record::alloc_page_map): Rename from alloc_map. Return bool
indicating success of cygheap memory allocation.
(mmap_record::free_page_map): Rename from free_map.
(mmap_record::fixup_page_map): Rename from fixup_map.
(mmap_record::find_unused_pages): Rename from find_empty.
(mmap_record::map_pages): Rename from map_map.
(mmap_record::unmap_pages): Rename from unmap_map.
(class list): Make all class members private.
(list::list): Remove.
(list::~list): Remove.
(list::get_fd): New attribute reader.
(list::get_hash): Ditto.
(list::get_record): Ditto.
(list::add_record): Manage all allocation for mmap_records.  Check
for failed memory allocation and return NULL if so.
(list::set): New function.
(list::del_record): Rename from erase. Return true if last mmap_record
has been deleted, false otherwise. Check for legal incoming index
value.
(list::erase): Remove erase/0.
(list::search_record): Rename from match.
(map::map): Remove.
(map::~map): Remove.
(map::add_list): Manage all allocation for lists.  Check for failed
memory allocation and return NULL if so.
(map::get_list): New method.
(map::del_list): Rename from erase. Check for legal incoming index
value.
(mmap64): Check for failed mmap_record memory allocation.  Return
with MAP_FAILED and errno set to ENOMEM if so.
(munmap): Rearrange loop using new list and mmap_record accessor
functions.  Rename loop index variables for better understanding.
Check if list can be deleted after last mmap_record in it has been
deleted.
(msync): Rearrange loop using new list and mmap_record accessor
functions.  Rename loop index variables for better understanding.
(fixup_mmaps_after_fork): Ditto.

20 years ago* cxx.cc (new): Fix formatting. Just return result of ccalloc rather than
Christopher Faylor [Thu, 4 Sep 2003 03:01:35 +0000 (03:01 +0000)]
* cxx.cc (new): Fix formatting.  Just return result of ccalloc rather than
calling memset explicitly.

20 years ago* mount.cc (mount_commands): Ensure user mode is actually user mode and not the
Christopher Faylor [Thu, 4 Sep 2003 01:04:57 +0000 (01:04 +0000)]
* mount.cc (mount_commands): Ensure user mode is actually user mode and not the
default system mode.

20 years agoIndex: opcodes/ChangeLog
Andrew Cagney [Wed, 3 Sep 2003 23:43:17 +0000 (23:43 +0000)]
Index: opcodes/ChangeLog
2003-09-03  Andrew Cagney  <cagney@redhat.com>

* dis-init.c (init_disassemble_info): New file and function.
* Makefile.am (CFILES): Add "dis-init.c".
(libopcodes_la_SOURCES): Add "dis-init.c".
(dis-init.lo): Specify dependencies.
* Makefile.in: Regenerate.

Index: include/ChangeLog
2003-08-27  Andrew Cagney  <cagney@redhat.com>

* dis-asm.h (init_disassemble_info): Declare.
(INIT_DISASSEMBLE_INFO): Redefine as a call to
init_disassemble_info.
(INIT_DISASSEMBLE_INFO_NO_ARCH): Ditto.

Index: binutils/ChangeLog
2003-09-03  Andrew Cagney  <cagney@redhat.com>

* objdump.c: Refer to init_disassemble_info in comments.
(disassemble_data): Replace INIT_DISASSEMBLE_INFO with
init_disassemble_info.

20 years ago* exceptions.cc (set_process_mask): Set pending signals only when signals
Christopher Faylor [Wed, 3 Sep 2003 14:15:55 +0000 (14:15 +0000)]
* exceptions.cc (set_process_mask): Set pending signals only when signals
become unmasked.
* sigproc.cc (pending_signals): Flip back to a global.
(wait_sig): Don't set pending signals when there is an armed semaphore or
signal is blocked.
* shared.cc (shared_info::initialize): Add a username parameter for user-mode
mounts.  Reorganize to try to avoid startup race.
(memory_init): Move some stuff into shared_info::initialize.
* shared_info.h (shared_info::initialize): Change declaration.
(CURR_SHARED_MAGIC): Update.

20 years ago2003-09-02 Bart Oldeman <bartoldeman@users.sourceforge.net>
Danny Smith [Wed, 3 Sep 2003 00:59:02 +0000 (00:59 +0000)]
2003-09-02  Bart Oldeman  <bartoldeman@users.sourceforge.net>

* lib/snmpapi.def (LIBRARY) Add library name.
Remove '\r', throughout.
* lib/wsnmp32.def: Remove '\r', throughout.
* lib/igmpagnt.def: Likewise.

20 years ago* configure.in: Ensure arguments to sed are properly spaced.
DJ Delorie [Tue, 2 Sep 2003 23:21:43 +0000 (23:21 +0000)]
* configure.in: Ensure arguments to sed are properly spaced.
* configure: Regenerate.

20 years ago2003-09-02 Thomas Pfaff <tpfaff@gmx.net>
Jeff Johnston [Tue, 2 Sep 2003 22:42:05 +0000 (22:42 +0000)]
2003-09-02  Thomas Pfaff  <tpfaff@gmx.net>

        * libc/stdlib/atexit.c: Rename _REENT to _GLOBAL_REENT throughout.
        * libc/stdlib/exit.c : Ditto.
        * libc/stdlib/on_exit.c: Ditto.

20 years ago* include/cygwin/version.h: Bump DLL minor number to 4.
Christopher Faylor [Mon, 1 Sep 2003 17:12:29 +0000 (17:12 +0000)]
* include/cygwin/version.h: Bump DLL minor number to 4.

20 years ago* net.cc (dup_ent): Restore check for NULL input.
Christopher Faylor [Mon, 1 Sep 2003 16:47:03 +0000 (16:47 +0000)]
* net.cc (dup_ent): Restore check for NULL input.

20 years ago * pathnames.sgml: Remove description how to mount raw devices and
Corinna Vinschen [Mon, 1 Sep 2003 12:56:01 +0000 (12:56 +0000)]
* pathnames.sgml: Remove description how to mount raw devices and
dicourage it.  Desparately try to make usage of raw devices a bit
clearer.

20 years ago* kill.cc (forcekill): Silence some compiler warnings.
Christopher Faylor [Mon, 1 Sep 2003 02:40:16 +0000 (02:40 +0000)]
* kill.cc (forcekill): Silence some compiler warnings.

20 years ago* Makefile.in: Oops. Put the '...' in the right place.
Christopher Faylor [Mon, 1 Sep 2003 02:33:50 +0000 (02:33 +0000)]
* Makefile.in: Oops.  Put the '...' in the right place.

20 years ago* include/sys/cygwin.h: Don't define cygwin-specific things if !__CYGWIN__.
Christopher Faylor [Mon, 1 Sep 2003 02:26:27 +0000 (02:26 +0000)]
* include/sys/cygwin.h: Don't define cygwin-specific things if !__CYGWIN__.

20 years ago* cygheap.cc (cygheap_init): Allocate space for sigaction array in cygheap.
Christopher Faylor [Mon, 1 Sep 2003 02:05:32 +0000 (02:05 +0000)]
* cygheap.cc (cygheap_init): Allocate space for sigaction array in cygheap.
* cygheap.h (cygheap_types): Add HEAP_SIGS.
* exceptions.cc (signal_fixup_after_exec): Remove from this file.
* pinfo.h (pinfo::getsig): Just return global_sigs array.
(pinfo::sigs): Delete.
* sigproc.cc (signal_fixup_after_exec): Move it here.
(global_sigs): New global array, moved from pinfo structure.
(sigalloc): New function.  Allocate global sigaction array here.
(proc_subproc): Remove copysigs call.  It's automatic now.
* include/sys/cygwin.h (PID_NOCLDSTOP): New value.
* signal.cc (sigaction): Set myself->PID_NODCLDSTOP when appropriate.
* sigproc.h (sigalloc): Declare.
* fnmatch.c (fnmatch): Use C90 parameters.
(rangematch): Ditto.
* fhandler.cc (fhandler_base::raw_read): Use right coercion to avoid a compiler
warning.

20 years ago* Makefile.in: Display "..." when not-verbose.
Christopher Faylor [Mon, 1 Sep 2003 01:57:44 +0000 (01:57 +0000)]
* Makefile.in: Display "..." when not-verbose.
* kill.cc (forcekill): Default to entered pid when pinfo fails.  Issue some
warnings when things don't work.

20 years ago* net.cc (dup_ent): Make debugging output consistent.
Christopher Faylor [Sun, 31 Aug 2003 23:23:40 +0000 (23:23 +0000)]
* net.cc (dup_ent): Make debugging output consistent.

20 years agoUse dup_ent rather than specific dup_*_ptr functions throughout.
Christopher Faylor [Sun, 31 Aug 2003 23:16:34 +0000 (23:16 +0000)]
Use dup_ent rather than specific dup_*_ptr functions throughout.
* (gen_ent): Delete.
(dup_ent): Subsume gen_ent functionality.
(dup_host_ptr): Delete.
(dup_proto_ptr): Ditto.
(dup_servent_ptr): Ditto.
* net.cc (gen_ent): Invert sense of null check so that debug output makes
sense.

20 years ago* net.cc (free_char_list): Delete.
Christopher Faylor [Sun, 31 Aug 2003 22:02:15 +0000 (22:02 +0000)]
* net.cc (free_char_list): Delete.
(dup_addr_list): Delete.
(dup_char_list): Delete.
(free_hostent_ptr): Delete.
(free_protoent_ptr): Delete.
(free_servent_ptr): Delete.
(DWORD_round): New function.
(strlen_round): New function.  Returns strlen rounded up to word size.
(dup_ent): New, generic function to duplicate a {host,proto,serv}ent structure.
(gen_ent): New macro.  Generates a generic dup_{host,proto,serv}ent_ptr
function.
(cygwin_getservbyname): Remove call to free_servent_ptr, pass servent_buf to
dup_servent_ptr.
(cygwin_getservbyport): Ditto.
(cygwin_gethostbyname): Ditto for hostent.
(cygwin_gethostbyaddr): Ditto.
(cygwin_getprotobyname): Ditto for protoent.
(cygwin_getprotobynumber): Ditto.

20 years ago* Makefile.in (MALLOC_OFILES): Always fill in with correct malloc object.
Christopher Faylor [Sun, 31 Aug 2003 18:26:58 +0000 (18:26 +0000)]
* Makefile.in (MALLOC_OFILES): Always fill in with correct malloc object.
* configure.in: Fill in MALLOC_OFILES with either debugging or regular malloc.
* configure: Regenerate.
* dlmalloc.c: Make various fruitless changes to attempt to get to work.
* dlmalloc.h: Ditto.
* malloc.cc (free): Check malloc pool when debugging.
* path.cc (win32_device_name): Eliminate compiler warning.
* sigproc.cc (sig_dispatch_pending): Remove use of was_pending.  Let
thisframe.call_signal_handler decide if handler should be called rather than
using bogus was_pending check.
* exceptions.cc (interrupt_setup): Remove accidentally checked in debugging
code.
* heap.cc (sbrk): Save rounded addess in user_heap_max.

20 years agochange copyright
Christopher Faylor [Sun, 31 Aug 2003 00:40:16 +0000 (00:40 +0000)]
change copyright

20 years ago* sigproc.cc (sig_dispatch_pending): Remove explicit call to
Christopher Faylor [Sat, 30 Aug 2003 20:43:06 +0000 (20:43 +0000)]
* sigproc.cc (sig_dispatch_pending): Remove explicit call to
thisframe.call_signal_handler.

20 years agomissed one
Christopher Faylor [Sat, 30 Aug 2003 16:35:46 +0000 (16:35 +0000)]
missed one

20 years ago* msg.cc: New file.
Christopher Faylor [Sat, 30 Aug 2003 16:34:56 +0000 (16:34 +0000)]
* msg.cc: New file.
* sem.cc: Ditto.

20 years ago* threaded_queue.h: New file.
Christopher Faylor [Sat, 30 Aug 2003 16:32:15 +0000 (16:32 +0000)]
* threaded_queue.h: New file.

20 years agoRemove some cygserver files.
Christopher Faylor [Sat, 30 Aug 2003 16:31:10 +0000 (16:31 +0000)]
Remove some cygserver files.

20 years ago2003-08-29 Steve Cleary <scleary@jerviswebb.com>
Danny Smith [Fri, 29 Aug 2003 08:01:09 +0000 (08:01 +0000)]
2003-08-29  Steve Cleary  <scleary@jerviswebb.com>

* include/winuser.h (QS_ALLPOSTMESSAGE, QS_RAWINPUT): Add defines.
(QS_INPUT, QS_ALLINPUT, QS_ALLEVENTS): Adjust by OR'ing with
QS_RAWINPUT for XP.
(MWMO_*): Add flags.

* include/wincrypt.h (MS_ENHANCED_PROV[AW], MS_STRONG_PROV[AW],
MS_DEF_RSA_SIG_PROV[AW], MS_DEF_RSA_SCHANNEL_PROV[AW],
MS_DEF_DSS_PROV[AW], MS_DEF_DSS_DH_PROV[AW], MS_ENH_DSS_DH_PROV[AW],
MS_DEF_DH_SCHANNEL_PROV[AW], MS_SCARD_PROV[AW]): Add definitions.

20 years ago* sigproc.h: Make some functions regparm.
Christopher Faylor [Fri, 29 Aug 2003 03:29:16 +0000 (03:29 +0000)]
* sigproc.h: Make some functions regparm.
* sigproc.cc (checkstate): Make regparm.
(getevent): Change parameters in declaration, rename from getsem, make regparm.
(sig_send): Recognize that nosync is now an event.  Remove some old cruft from
previous interrupt anywhere signal handler.
(getevent): Change parameters in definition, rename from getsem.  Allocate
event rather than semaphore.
(wait_sig): Treat sigcatch_nosync as an event.

20 years ago* sigproc.h: Make some functions regparm.
Christopher Faylor [Fri, 29 Aug 2003 02:59:06 +0000 (02:59 +0000)]
* sigproc.h: Make some functions regparm.
* sigproc.cc (checkstate): Make regparm.
(getevent): Change parameters in declaration, rename from getsem, make regparm.
(sig_send): Recognize that nosync is now an event.  Remove some old cruft from
previous interrupt anywhere signal handler.
(getevent): Change parameters in definition, rename from getsem.  Allocate
event rather than semaphore.
(wait_sig): Treat sigcatch_nosync as an event.

20 years ago* exceptions.cc (sigreturn): Fix problem where old return address was not
Christopher Faylor [Fri, 29 Aug 2003 02:05:00 +0000 (02:05 +0000)]
* exceptions.cc (sigreturn): Fix problem where old return address was not
properly restored for a nested signal.

20 years ago * install-sh: Update to newer upstream versions (associated with
Daniel Jacobowitz [Fri, 29 Aug 2003 00:13:09 +0000 (00:13 +0000)]
* install-sh:  Update to newer upstream versions (associated with
aclocal 1.7).
* missing:  Likewise, plus $1Help2man -> $1 typo fix.

20 years ago* autoload.cc (SwitchToThread): Declare as autoload function.
Christopher Faylor [Thu, 28 Aug 2003 02:09:42 +0000 (02:09 +0000)]
* autoload.cc (SwitchToThread): Declare as autoload function.
* cygthread.h (cygthread::main_thread_id): Make public.
* exceptions.cc (setup_handler): Remove unneeded priority stuff.  Rename label
to reflect what it does.  Add debugging for idiotic Windows NT problem.  Change
debugging output to include signal number.
* miscfuncs.cc (low_priority_sleep): If available, use SwitchToThread function
to give time slice to other threads.
* wincap.cc: Properly define have_switch_to_thread throughout.
* wincap.h (wincap::switch_to_thread): New element.

20 years ago* syscalls.cc (mount): Don't check win32_path when doing cygdrive mount.
Christopher Faylor [Thu, 28 Aug 2003 02:04:16 +0000 (02:04 +0000)]
* syscalls.cc (mount): Don't check win32_path when doing cygdrive mount.

20 years ago * configure.in: Set RAW_CXX_FOR_TARGET if unset.
Daniel Jacobowitz [Wed, 27 Aug 2003 21:17:54 +0000 (21:17 +0000)]
* configure.in: Set RAW_CXX_FOR_TARGET if unset.
* configure: Regenerated.

20 years ago* specdir: Correctly remove temporary directory prior to use.
Christopher Faylor [Wed, 27 Aug 2003 21:01:14 +0000 (21:01 +0000)]
* specdir: Correctly remove temporary directory prior to use.

20 years ago* sigproc.cc (wait_sig): Count number of iterations through 'more_signals' loop
Christopher Faylor [Wed, 27 Aug 2003 20:42:52 +0000 (20:42 +0000)]
* sigproc.cc (wait_sig): Count number of iterations through 'more_signals' loop
and issue a warning if DEBUGGING and excessive.
(WFSO): When debugging and infinite timeout, loop.

20 years ago * config/no-executables.m4: New file.
Daniel Jacobowitz [Wed, 27 Aug 2003 19:14:47 +0000 (19:14 +0000)]
* config/no-executables.m4: New file.

20 years ago2003-08-27 Corinna Vinschen <corinna@vinschen.de>
Jeff Johnston [Wed, 27 Aug 2003 16:24:57 +0000 (16:24 +0000)]
2003-08-27  Corinna Vinschen  <corinna@vinschen.de>

        * libc/include/reent.h: Define stat64 as __stat64 when
        compiling newlib for Cygwin.

20 years agoMerge bugfix from GCC:
Nathanael Nerode [Wed, 27 Aug 2003 03:05:51 +0000 (03:05 +0000)]
Merge bugfix from GCC:

2003-08-23  Phil Edwards  <pme@gcc.gnu.org>

* configure.in:  Use newline instead of semicolon when assuming
shell arguments in a for loop.
* configure:  Regenerated.

20 years ago2003-08-26 Jeff Johnston <jjohnstn@redhat.com>
Jeff Johnston [Tue, 26 Aug 2003 20:54:04 +0000 (20:54 +0000)]
2003-08-26  Jeff Johnston  <jjohnstn@redhat.com>

        * libc/include/sys/stat.h[__CYGWIN__]: Only define stat64 as
        __stat64 when compiling newlib.

20 years ago2003-08-26 Jeff Johnston <jjohnstn@redhat.com>
Jeff Johnston [Tue, 26 Aug 2003 18:09:43 +0000 (18:09 +0000)]
2003-08-26  Jeff Johnston  <jjohnstn@redhat.com>

        * libc/include/stdio.h: Allow the io64 function prototypes for
        Cygwin when compiling newlib.
        * libc/include/sys/stat.h[__CYGWIN__]: Define stat64 as __stat64
        to expose the Cygwin struct __stat64 type.
        * libc/stdio64/fseeko64.c: Use _fstat64_r and pass a struct stat64
        pointer.
        * libc/stdio64/tmpfile64.c(_tmpfile64_r): Call _fopen64_r.

20 years ago * include/cygwin/stat.h: Allow definition of internal stat structures
Corinna Vinschen [Tue, 26 Aug 2003 07:45:38 +0000 (07:45 +0000)]
* include/cygwin/stat.h: Allow definition of internal stat structures
also when compiling newlib.

20 years ago2003-08-26 Danny Smith <dannysmith@users.sourceforge.net>
Danny Smith [Tue, 26 Aug 2003 06:54:55 +0000 (06:54 +0000)]
2003-08-26  Danny Smith <dannysmith@users.sourceforge.net>

* lib/test.c: Add vfw.h to includes.
* include/mmsystem.h: Add #ifndef guard to definition of
mmioFOURCC macro.
* include/vfw.h: Protect __OBJC__ from COM declarations.

2003-08-26  Filip Navara  <xnavara@volny.cz>

* include/vfw.h: New file.

20 years ago * sparc/elfsim.ld: Fix __EH_FRAME_BEGIN__ definition.
Jason Merrill [Tue, 26 Aug 2003 05:21:56 +0000 (05:21 +0000)]
    * sparc/elfsim.ld: Fix __EH_FRAME_BEGIN__ definition.
        * sparc/sparc86x.ld: Likewise.

20 years agoadd missing files
Christopher Faylor [Mon, 25 Aug 2003 19:44:44 +0000 (19:44 +0000)]
add missing files

20 years ago* Makefile.in: Build libcygserver.a.
Christopher Faylor [Mon, 25 Aug 2003 18:22:07 +0000 (18:22 +0000)]
* Makefile.in: Build libcygserver.a.
* client.cc: Rename allow_daemon to allow_server.

20 years agoThroughout, change USE_CYGSERVER to USE_SERVER.
Christopher Faylor [Mon, 25 Aug 2003 18:21:07 +0000 (18:21 +0000)]
Throughout, change USE_CYGSERVER to USE_SERVER.
* Makefile.in (LIBSERVER): Define and use.
* configure.in: Set LIBSERVER as appropriate.
* environ.cc: Rename allow_daemon to allow_server.  Only recognize when
USE_SERVER is defined.

20 years ago2003-08-26 Filip Navara <xnavara@volny.cz>
Danny Smith [Mon, 25 Aug 2003 10:20:36 +0000 (10:20 +0000)]
2003-08-26  Filip Navara  <xnavara@volny.cz>

* include/ddk/winddk.h (RTL_REGISTRY_*): Add defines.
(IoSetCompletionRoutine): Cast _CompletionRoutine arg to
PIO_COMPLETION_ROUTINE.

20 years agotest new snmp headers
Danny Smith [Mon, 25 Aug 2003 09:52:10 +0000 (09:52 +0000)]
test new snmp headers

20 years agoAdd snmp API
Danny Smith [Mon, 25 Aug 2003 09:33:14 +0000 (09:33 +0000)]
Add snmp API

2003-08-26  Filip Navara  <xnavara@volny.cz>

* include/snmp.h: New file.
* include/winsnmp.h: New file.
* include/mgmtapi.h: New file.
* lib/snmpapi.def: New file.
* lib/wsnmp32.def: New file.
* lib/igmpagnt.def: New file.
* lib/mgmtapi.def (SnmpMgrCtl) Add stub.
(SnmpMgrGetTrapEx): Ditto.
(SnmpMgrMIB2Disk): Remove.
(dbginit): Remove.

20 years ago2003-08-25 Steven Edwards <Steven_Ed4153@yahoo.com>
Danny Smith [Mon, 25 Aug 2003 02:02:37 +0000 (02:02 +0000)]
2003-08-25  Steven Edwards  <Steven_Ed4153@yahoo.com>

* include/ddk/ntifs.h: Change all C++ style comments to C.
* include/GL/gl.h: Ditto.

2003-08-25  Martin Fuchs  <Martin-Fuchs@gmx.net>

* include/shlobj.h (SFGAO_GHOSTED): Correct.
(SFGAO_HIDDEN): Add define.

20 years ago2003-08-25 Filip Navara <xnavara@volny.cz>
Danny Smith [Mon, 25 Aug 2003 01:39:59 +0000 (01:39 +0000)]
2003-08-25  Filip Navara  <xnavara@volny.cz>

* include/commctrl.h (ILCF_*): Add defines.
(ILD_*): Ditto.
(HDS_*); Ditto.
(IPN_FIRST, IPN_LAST): Cast to UINT.
(SBN_FIRST, SBN_LAST): Add defines.
(PGN_*): Ditto.
(HDF_JUSTIFYMASK): Fix typo.
(HDM_*): Add defines.
(HICF_*): Ditto.
(I_INDENTCALLBACK,I_IMAGENONE): Ditto.
(TBSTATE_MARKED): Add define.
(TBSTYLE_EX_*): Add defines.
(TBCDRF_*): Ditto.
(IDB_HIST_SMALL_COLOR,IDB_HIST_LARGE_COLOR): Ditto.
(TB_*): Ditto.
(TBN_*): Ditto.
(TBNRF_*): Ditto.
(TTF_*): Ditto.
(TBCD_*): Ditto.
(TBDDRET_*): Ditto.
(TBIMHT_*): Ditto.
(TTM_*): Ditto.
(UDM_*): Ditto.
(TBIF_BYINDEX): Define as hex constant.
(CDIS_*): Add defines.
(CDDS_SUBITEM): Add define.
(LVIF_*): Add defines.
(LVM_*): Ditto.
(LVGIT_UNFOLDED): Add define.
(TVM_): Add defines.
(TVE_EXPANDPARTIAL): Add define.
(TVGN_LASTVISIBLE): Ditto.
(TVN_*): Add defines.
(TVNRET_*): Add defines.
(TCIF_STATE): Add define.
(NM_TOOLTIPSCREATED): Ditto.
(CCM_*): Add defines.
(INFOTIPSIZE): Add numeric value.
(ODT_LISTVIEW): Ditto.
(MCM_GETMAXTODAYWIDTH): Ditto.
(MCHT_*): Add defines.
(UDM_SETRANGE32,UDM_GETRANGE32): Define in terms of WM_USER.
(PGF_*): Add defines.
(PGM_*): Ditto.
(TBINSERTMARK): Add structure.
(LPIMAGEINFO) Add typedef.
(LPHDHITTESTINFO): Ditto.
(NMLVGETINFOTIP[AW]: Add structures.
(NMTBCUSTOMDRAW): Add structure.
(TTTOOLINFOA_V*_SIZE): Add macros.
(TTTOOLINFOW_V1_SIZE): Ditto.
(IMAGELISTDRAWPARAMS): Add new members for WXP.
(LVITEM[AW]: Ditto.
(TCITEM[AW]):Ditto.
(CCSIZEOF_STRUCT): Correct macro definition.
(ListView_*): Add new macros.
(HIMAGELIST): Correct typedef.
(HTREEITEM): Ditto.

2003-08-25   Danny Smith <dannysmith@users.sourceforge.net>

* commctrl.h (TC_HITTESTINFO): Remove. Add defines for
TCHITTESTINFO for backward compatibility.
(TC_ITEM[AW]): Rename to TCITEM[AW]. Add defines for backward
compatibility.

20 years ago2003-08-24 Danny Smith <dannysmith@users.sourceforge.net>
Danny Smith [Sun, 24 Aug 2003 23:04:57 +0000 (23:04 +0000)]
2003-08-24   Danny Smith <dannysmith@users.sourceforge.net>

* include/objidl.h (COBJMACROS): Define macros only
if using C interace.
* include/unknwn.h: Ditto.
* include/comcat.h: Ditto.

2003-08-24  Filip Navara  <xnavara@volny.cz>

* include/prsht.h (PSH_WIZARDHASFINISH, PSH_WIZARD_LITE,
PSH_NOCONTEXTHELP): Define.
(PSH_WIZARD97): Fix definition for _WIN32_IE >= 0x500.
* include/winuser.h (DFCS_TRANSPARENT, DFCS_HOT): Define.
(LPDLGTEMPLATE[AW]): Add typedefs.

20 years ago2003-08-23 Jason Eckhardt <jle@rice.edu>
Jason Eckhardt [Sat, 23 Aug 2003 23:00:09 +0000 (23:00 +0000)]
2003-08-23  Jason Eckhardt  <jle@rice.edu>

[bfd/ChangeLog]
        * coff-i860.c (coff_i860_reloc_nyi): New function.
(howto_table): Add entries for relocations PAIR, HIGHADJ, HIGH,
LOWn, SPLITn, and BRADDR.
(RTYPE2HOWTO): Check that the r_type is within the howto_table
before trying to access the entry.
(coff_i860_rtype_to_howto): Likewise.
(coff_i860_reloc_type_lookup): New function.
(i860_reloc_processing): New function.
(coff_bfd_reloc_type_lookup): Define macro.
(RELOC_PROCESSING): Define macro.
Minor formatting adjustments.

[include/coff/ChangeLog]
* coff/i860.h (COFF860_R_PAIR, COFF860_R_LOW0, COFF860_R_LOW1,
COFF860_R_LOW2, COFF860_R_LOW3, COFF860_R_LOW4, COFF860_R_SPLIT0,
COFF860_R_SPLIT1, COFF860_R_SPLIT2, COFF860_R_HIGHADJ,
COFF860_R_BRADDR): Define new relocation constants and document.
Minor formatting adjustments.

20 years ago* syscalls.cc (_remove_r): Define.
Christopher Faylor [Sat, 23 Aug 2003 18:03:16 +0000 (18:03 +0000)]
* syscalls.cc (_remove_r): Define.

20 years ago* libc/stdio64/fseeko64.c (fseeko64_r): Rename second fseeko64_r definition to
Christopher Faylor [Sat, 23 Aug 2003 17:57:43 +0000 (17:57 +0000)]
* libc/stdio64/fseeko64.c (fseeko64_r): Rename second fseeko64_r definition to
fseeko64.

20 years agoRevise DejaGnu patch submission guidelines.
Ben Elliston [Sat, 23 Aug 2003 08:51:04 +0000 (08:51 +0000)]
Revise DejaGnu patch submission guidelines.

20 years ago* cygheap.h (enum cygheap_types): Add HEAP_MMAP.
Christopher Faylor [Sat, 23 Aug 2003 00:03:54 +0000 (00:03 +0000)]
* cygheap.h (enum cygheap_types): Add HEAP_MMAP.
(CYGHEAPSIZE): Add another 64K.
* mmap.cc: Use cmalloc, ccalloc and crealloc with HEAP_MMAP type throughout.

20 years ago* cygheap.cc (user_heap_info::max): New field.
Christopher Faylor [Fri, 22 Aug 2003 19:33:09 +0000 (19:33 +0000)]
* cygheap.cc (user_heap_info::max): New field.
* heap.cc (heap_init): Save pointer to end of heap reserved memory.
(sbrk): Don't attempt to commit memory beyond end of heap reserved memory.
Attempt to honor comment and reserve commitbytes if heapchunk fails.

20 years ago* exceptions.cc (sigreturn): Don't clobber ebp in recursive signal calls.
Christopher Faylor [Fri, 22 Aug 2003 19:25:56 +0000 (19:25 +0000)]
* exceptions.cc (sigreturn): Don't clobber ebp in recursive signal calls.

20 years ago2003-08-22 Jeff Johnston <jjohnstn@redhat.com>
Jeff Johnston [Fri, 22 Aug 2003 18:52:25 +0000 (18:52 +0000)]
2003-08-22  Jeff Johnston  <jjohnstn@redhat.com>

* libc/include/sys/reent.h: Add _GLOBAL_REENT macro.
* libc/stdio: Globally remove/replace all references to fp->_data.
Replace with _REENT or _GLOBAL_REENT where appropriate.
* libc/stdio/asprintf.c: Ditto.
* libc/stdio/fclose.c: Ditto.
* libc/stdio/fvwrite.c: Ditto.
* libc/stdio/makebuf.c: Ditto.
* libc/stdio/refill.c: Ditto.
* libc/stdio/local.h: Ditto.
* libc/stdio/setvbuf.c: Ditto.
* libc/stdio/sscanf.c: Ditto.
* libc/stdio/stdio.c: Ditto.
* libc/stdio/ungetc.c: Ditto.
* libc/stdio/vfscanf.c: Ditto.
* libc/stdio/vsscanf.c: Ditto.
* libc/stdio/fopen.c: Ditto.  Also use _fseek_r in _fopen_r.
* libc/stdio/vasprintf.c: Ditto.  Also call _vfprintf_r directly.
* libc/stdio/vsnprintf.c: Ditto.
* libc/stdio/vsprintf.c: Ditto.
* libc/stdio/fcloseall.c(fcloseall): Use _GLOBAL_REENT macro
instead of _REENT to walk file list.
* libc/stdio/fflush.c: Ditto.
* libc/stdio/fgetpos.c: Add reentrant version and have regular
version call reentrant version with _REENT argument.
* libc/stdio/fsetpos.c: Ditto.
* libc/stdio/fseek.c: Ditto.
* libc/stdio/fseeko.c: Ditto.
* libc/stdio/ftell.c: Ditto.
* libc/stdio/ftello.c: Ditto.
* libc/stdio/freopen.c: Ditto.
* libc/stdio/findfp.c: Use _GLOBAL_REENT pointer when adding
new files to chain.  Also use _GLOBAL_REENT pointer for
cleaning up.
* libc/stdio/fiprintf.c: Reformatted to minimize duplicate code.
* libc/stdio/siprintf.c: Ditto.
* libc/stdio/iprintf.c: Ditto.
* libc/stdio/fprintf.c: Ditto.
* libc/stdio/printf.c: Ditto.
* libc/stdio/snprintf.c: Call _vfprintf_r directly.
* libc/stdio/sprintf.c: Ditto.
* libc/stdio/vprintf.c: Ditto.  Also add _REENT_ONLY check.
* libc/stdio/rewind.c: Call _fseek_r directly.
* libc/stdio/tmpfile.c: Call _fopen_r and _remove_r directly.
* libc/stdio/vfprintf.c (_VFPRINTF_R): Change _r routines to use
data pointer.
(get_arg): Add extra struct _reent pointer argument.
* libc/stdio64/fgetpos64.c: Add _r versions, remove any reference
to fp->_data.
* libc/stdio64/fopen64.c: Ditto.
* libc/stdio64/freopen64.c: Ditto.
* libc/stdio64/fsetpos64.c: Ditto.
* libc/stdio64/ftello64.c: Ditto.
* libc/stdio64/local64.h: Ditto.
* libc/stdio64/stdio64.c: Ditto.
* libc/stdio64/fseeko64.c: Ditto plus use _fstat_r instead of
_fstat64_r for the meantime.

20 years agoIndex: ChangeLog
Geoffrey Keating [Fri, 22 Aug 2003 17:05:58 +0000 (17:05 +0000)]
Index: ChangeLog
2003-08-20  Geoffrey Keating  <geoffk@apple.com>

PR 8180
* configure.in: When testing with_libs and with_headers, treat
'no' as unset.  Based on a patch by Dan Kegel <dank@kegel.com>.
* configure: Regenerate.

Index: gcc/ChangeLog
2003-08-20  Geoffrey Keating  <geoffk@apple.com>

PR 8180
* configure.in: When testing with_libs and with_headers, treat
'no' as unset.  Based on a patch by Dan Kegel <dank@kegel.com>.
* configure: Regenerate.

20 years ago* exceptions.cc (sig_handle): Change so that default signals indicate success.
Christopher Faylor [Fri, 22 Aug 2003 17:01:53 +0000 (17:01 +0000)]
* exceptions.cc (sig_handle): Change so that default signals indicate success.

20 years ago2003-08-22 Filip Navara <xnavara@volny.cz>
Danny Smith [Fri, 22 Aug 2003 11:21:28 +0000 (11:21 +0000)]
2003-08-22  Filip Navara  <xnavara@volny.cz>

* include/aclapi.h (BuildImpersonateExplicitAccessWithName[AW]):
Add prototypes.
BuildImpersonateTrustee[AW]): Add prototypes.
GetMultipleTrustee[AW]): Add prototypes.
GetMultipleTrusteeOperation[AW]): Add prototypes.

Add missing changelog entry from last commit.

20 years ago2003-08-22 Danny Smith <dannysmith@users.sourceforge.net>
Danny Smith [Fri, 22 Aug 2003 10:50:54 +0000 (10:50 +0000)]
2003-08-22   Danny Smith <dannysmith@users.sourceforge.net>

        * include/winnt.h (IMAGE_SUBSYSTEM_XBOX): Add define.

2003-08-22  Mihai Preda <mihai_preda@users.sourceforge.net>

* include/shlobj.h (IPersistFolder::GetClassID):
Correct declaration.
(CMF_*) Add missing defines.

2003-08-22   Danny Smith <dannysmith@users.sourceforge.net>

        * include/winuser.h (DC_BUTTONS): Add define.

2003-08-22  Andrew Greenwood  <lists@silverblade.co.uk>

        * include/winuser.h (DC_GRADIENT): Add define.

2003-08-22  Martin Fuchs  <Martin-Fuchs@gmx.net>

* include/commctrl.h (BTNS_*): Define BTNS_* as successors to the
older TBSTYLE_* constants.

20 years ago* sigproc.cc (wait_sig): Remove redundant test in do/while.
Christopher Faylor [Fri, 22 Aug 2003 03:40:49 +0000 (03:40 +0000)]
* sigproc.cc (wait_sig): Remove redundant test in do/while.

20 years ago* sigproc.cc (wait_sig): Avoid infinite loop.
Christopher Faylor [Fri, 22 Aug 2003 01:07:01 +0000 (01:07 +0000)]
* sigproc.cc (wait_sig): Avoid infinite loop.

20 years agoAdd PGI extensions
Nick Clifton [Thu, 21 Aug 2003 14:03:23 +0000 (14:03 +0000)]
Add PGI extensions

20 years ago* speclib: Reenable removal of temp files.
Christopher Faylor [Thu, 21 Aug 2003 03:36:02 +0000 (03:36 +0000)]
* speclib: Reenable removal of temp files.

20 years ago* miscfuncs.cc (low_priority_sleep): Sleep at same priority as main thread.
Christopher Faylor [Thu, 21 Aug 2003 03:18:46 +0000 (03:18 +0000)]
* miscfuncs.cc (low_priority_sleep): Sleep at same priority as main thread.
* sigproc.cc (wait_sig): Keep looping if there are more signals to consider and
we are flushing signals.
(sig_send): Put nonsync signals in the correct bucket.

20 years agoMerge configure.in, configure with GCC.
Geoffrey Keating [Thu, 21 Aug 2003 02:21:21 +0000 (02:21 +0000)]
Merge configure.in, configure with GCC.

20 years ago* speclib: Fix created lib to avoid "File truncated" problems.
Christopher Faylor [Thu, 21 Aug 2003 02:19:25 +0000 (02:19 +0000)]
* speclib: Fix created lib to avoid "File truncated" problems.

20 years ago2003-08-20 Chris Demetriou <cgd@broadcom.com>
Jeff Johnston [Wed, 20 Aug 2003 19:32:52 +0000 (19:32 +0000)]
2003-08-20  Chris Demetriou  <cgd@broadcom.com>

        * mips/crt0_cfe.S: New file.
        * mips/cfe_mem.c: New file.
        * mips/cfe_prestart.S: Remove.
        * mips/cfe.ld: Adjust to use crt0_cfe.o as the startup file, and
        and use _start as the entry point.  Align BSS to 32-byte boundary.
        * mips/cfe.c: Reimplement to fit on top of a crt0_cfe.o file.
        * mips/cfe_api.h (__libcfe_stack_size, __libcfe_mem_limit)
        (__libcfe_meminit, __libcfe_stack_top): New prototypes.
        * mips/Makefile.in (CFEOBJS): Replace cfe_prestart.o with cfe_mem.o.
        (cfe.o, cfe_api.o, cfe_mem.o, crt0_cfe.o): New targets.
        * mips/configure.in: Build and install crt0_cfe.o when CFE support
        is built.
        * mips/configure: Regenerate.

20 years ago* exceptions.cc (interrupt_setup): Set sigsave.sig last to avoid a race.
Christopher Faylor [Wed, 20 Aug 2003 18:09:24 +0000 (18:09 +0000)]
* exceptions.cc (interrupt_setup): Set sigsave.sig last to avoid a race.

20 years agoBetter handking for unresolved symbols
Nick Clifton [Wed, 20 Aug 2003 08:37:14 +0000 (08:37 +0000)]
Better handking for unresolved symbols

This page took 0.064085 seconds and 5 git commands to generate.