(wininfo::itv): Ditto. (wininfo::start_time): Ditto. (wininfo::window_started): Ditto. (wininfo::getitimer): Ditto. (wininfo::setitimer): Ditto. (wininfo::wininfo): Ditto. (wininfo::lock): New method. (wininfo::release): Ditto. * window.cc: Use new lock/acquire wininfo methods throughout. (wininfo::wininfo): Delete (wininfo::getitimer): Ditto. (wininfo::setitimer): Ditto. (getitimer): Ditto. (setitimer): Ditto. (ualarm): Ditto. (alarm): Ditto. (wininfo::lock): Define new function. (wininfo::release): Ditto. (wininfo::process): Delete WM_TIMER handling. * timer.cc (struct timetracker): Delete it, flags. Add it_interval, interval_us, sleepto_us, running, init_muto(), syncthread, and gettime(). (ttstart): Make NO_COPY. (lock_timer_tracker): New class. (timer_tracker::timer_tracker): Distinguish ttstart case. (timer_tracker::~timer_tracker): New destructor. Clean out events, and reset magic. (timer_tracker::init_muto): New method. (to_us): Round up as per POSIX. (timer_thread): Reorganize to match timer_tracker::settime and timer_tracker::gettime. Call sig_send without wait. Call auto_release. (timer_tracker::settime): Reorganize logic to avoid race. Call gettime to recover old value. (timer_tracker::gettime): New method. (timer_create): Properly set errno on invalid timerid. Use new lock_timer_tracker method. (timer_delete): Ditto. Simplify code slightly. (timer_gettime): New function. (fixup_timers_after_fork): Reinit ttstart. (getitimer): New implementation. (setitimer): Ditto. (ualarm): Ditto. (alarm): Ditto. * cygwin.din: Export timer_gettime. * winsup.h: Remove has has_visible_window_station declaration. * Makefile.in (DLL_OFILES): Add lsearch.o. * cygthread.h (cygthread::notify_detached): New element. (cygthread::cygthread): Take optional fourth argument signifying event to signal on thread completion. * cygthread.cc (cygthread::stub): Signal notify_detached event, if it exists. (cygthread::cygthread): Initialize notify_detached from fourth argument. (cygthread::detach): Wait for notify_detached field is present. * lsearch.cc: New file. * search.h: Ditto. * include/cygwin/version.h: Bump API minor number to 126. * cygwin.din: Export lsearch, lfind.
		
			
				
	
	
		
			56 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
/* cygthread.h
 | 
						|
 | 
						|
   Copyright 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 Red Hat, Inc.
 | 
						|
 | 
						|
This software is a copyrighted work licensed under the terms of the
 | 
						|
Cygwin license.  Please consult the file "CYGWIN_LICENSE" for
 | 
						|
details. */
 | 
						|
 | 
						|
#ifndef _CYGTHREAD_H
 | 
						|
#define _CYGTHREAD_H
 | 
						|
 | 
						|
class cygthread
 | 
						|
{
 | 
						|
  LONG inuse;
 | 
						|
  DWORD id;
 | 
						|
  HANDLE h;
 | 
						|
  HANDLE ev;
 | 
						|
  HANDLE thread_sync;
 | 
						|
  void *stack_ptr;
 | 
						|
  const char *__name;
 | 
						|
#ifdef DEBUGGING
 | 
						|
  const char *__oldname;
 | 
						|
  bool terminated;
 | 
						|
#endif
 | 
						|
  LPTHREAD_START_ROUTINE func;
 | 
						|
  VOID *arg;
 | 
						|
  bool is_freerange;
 | 
						|
  static bool exiting;
 | 
						|
  HANDLE notify_detached;
 | 
						|
 public:
 | 
						|
  bool terminate_thread ();
 | 
						|
  static DWORD WINAPI stub (VOID *);
 | 
						|
  static DWORD WINAPI simplestub (VOID *);
 | 
						|
  static DWORD main_thread_id;
 | 
						|
  static const char * name (DWORD = 0);
 | 
						|
  void auto_release () {func = NULL;}
 | 
						|
  void release (bool);
 | 
						|
  cygthread (LPTHREAD_START_ROUTINE, LPVOID, const char *, HANDLE = NULL);
 | 
						|
  cygthread () {};
 | 
						|
  static void init ();
 | 
						|
  bool detach (HANDLE = NULL);
 | 
						|
  operator HANDLE ();
 | 
						|
  void * operator new (size_t);
 | 
						|
  static cygthread *freerange ();
 | 
						|
  static void terminate ();
 | 
						|
  bool SetThreadPriority (int nPriority) {return ::SetThreadPriority (h, nPriority);}
 | 
						|
  void zap_h ()
 | 
						|
  {
 | 
						|
    (void) CloseHandle (h);
 | 
						|
    h = NULL;
 | 
						|
  }
 | 
						|
};
 | 
						|
 | 
						|
#define cygself NULL
 | 
						|
#endif /*_CYGTHREAD_H*/
 |