* dcrt0.cc (signal_shift_subtract): Eliminate ancient backwards compatibility. (check_sanity_and_sync): Ditto. * winsup.h (SIGTOMASK): Ditto. Just use constant in signal calculation. * include/cygwin/version: Remove backwards signal mask compatibility define. * path.cc (symlink_info::check_sysfile): Cosmetic change. * registry.cc (get_registry_hive_path): Remove unneeded variable. * exceptions.cc (handle_sigsuspend): Eliminate thread signal mask and use either main sigmask or current thread sigmask. (set_process_mask): Ditto. (sighold): Ditto. (sigrelse): Ditto. (sigset): Ditto. (set_process_mask_delta): Ditto. (_cygtls::call_signal_handler): Ditto. * fhandler_process.cc (format_process_status): Ditto. * fhandler_termios.cc (fhandler_termios::bg_check): Ditto. * pinfo.h (class pinfo): Ditto. * select.cc (pselect): Ditto. * signal.cc (sigprocmask): Ditto. (abort): Ditto. (sigpause): Ditto. (sigsend): Ditto. (wait_sig): Ditto. * thread.h (pthread::parent_tls): New member. * thread.cc (pthread::pthread): Record parent_tls here. (pthread::thread_init_wrapper): Initialize sigmask from parent thread.
		
			
				
	
	
		
			69 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			69 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/* minires.h.  Stub synchronous resolver for Cygwin.
 | 
						|
 | 
						|
   Copyright 2006 Red Hat, Inc.
 | 
						|
 | 
						|
   Written by Pierre A. Humblet <Pierre.Humblet@ieee.org>
 | 
						|
 | 
						|
This file is part of Cygwin.
 | 
						|
 | 
						|
This software is a copyrighted work licensed under the terms of the
 | 
						|
Cygwin license.  Please consult the file "CYGWIN_LICENSE" for
 | 
						|
details. */
 | 
						|
 | 
						|
#define  __INSIDE_CYGWIN_NET__
 | 
						|
 | 
						|
#include "winsup.h"
 | 
						|
#include <string.h>
 | 
						|
#include <malloc.h>
 | 
						|
#include <stdlib.h>
 | 
						|
#include <netdb.h>
 | 
						|
#include <ctype.h>
 | 
						|
#include <sys/time.h>
 | 
						|
#include <sys/socket.h>
 | 
						|
#include <netinet/in.h>
 | 
						|
#include <arpa/inet.h>
 | 
						|
#include <errno.h>
 | 
						|
#include <fcntl.h>
 | 
						|
#include <stdio.h>
 | 
						|
#include <stdarg.h>
 | 
						|
#include <sys/unistd.h>
 | 
						|
#include <netdb.h>
 | 
						|
#include <arpa/nameser.h>
 | 
						|
#include <resolv.h>
 | 
						|
 | 
						|
extern in_addr_t cygwin_inet_addr (const char *);
 | 
						|
extern int cygwin_socket (int, int, int);
 | 
						|
extern int cygwin_bind (int, const struct sockaddr *, socklen_t);
 | 
						|
extern int cygwin_connect (int, const struct sockaddr *, socklen_t);
 | 
						|
extern int cygwin_select (int, fd_set *, fd_set *, fd_set *, struct timeval *);
 | 
						|
extern int cygwin_sendto (int, const void *, size_t, int,
 | 
						|
			  const struct sockaddr *, socklen_t);
 | 
						|
extern int cygwin_recvfrom (int, void *, size_t, int, struct sockaddr *,
 | 
						|
			    socklen_t *);
 | 
						|
 | 
						|
/* Number of elements is an array */
 | 
						|
#define DIM(x) (sizeof(x) / sizeof(*(x)))
 | 
						|
 | 
						|
/* Definitions to parse the messages */
 | 
						|
#define RD (1<<8) /* Offset in a short */
 | 
						|
#define RA (1<<7)
 | 
						|
#define QR (1<<7) /* Offsets in a char */
 | 
						|
#define TC (1<<1)
 | 
						|
#define ERR_MASK 0xF
 | 
						|
 | 
						|
/* Type for os specific res_lookup */
 | 
						|
typedef int (os_query_t) (res_state, const char *, int, int, u_char *, int);
 | 
						|
 | 
						|
/* Special use of state elements */
 | 
						|
#define sockfd _vcsock
 | 
						|
#define mypid _flags
 | 
						|
#define os_query qhook
 | 
						|
#define use_os pfcode
 | 
						|
 | 
						|
#define DPRINTF(cond, format...)  if (cond) minires_dprintf(format)
 | 
						|
 | 
						|
/* Utility functions */
 | 
						|
void minires_dprintf(const char * format, ...);
 | 
						|
void minires_get_search(char * string, res_state statp);
 | 
						|
void get_dns_info(res_state statp);
 |