Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Changes In Branch dkf-notifier-poll Through [9e8f986a3d] Excluding Merge-Ins
This is equivalent to a diff from 819514e8ee to 9e8f986a3d
|
2011-07-06
| ||
| 00:05 | Merge to feature branch check-in: 157b73fa41 user: dkf tags: dkf-notifier-poll | |
|
2011-06-20
| ||
| 11:59 | Merg [3148192] implementation fix, and caveat comment check-in: d4da13a54e user: jan.nijtmans tags: trunk | |
|
2011-06-19
| ||
| 20:22 | Merge to feature branch check-in: 9e8f986a3d user: dkf tags: dkf-notifier-poll | |
|
2011-06-13
| ||
| 19:36 | merge trunk check-in: 436bdbbf52 user: mig tags: mig-no280 | |
| 19:36 | merge trunk check-in: 1be044ebbd user: mig tags: mig-alloc-reform | |
| 13:50 | 3315098 Mem leak fix from Gustaf Neumann. check-in: 819514e8ee user: dgp tags: trunk | |
| 13:48 | 3315098 Mem leak fix from Gustaf Neumann. check-in: a04865ea8e user: dgp tags: core-8-5-branch | |
|
2011-06-08
| ||
| 20:28 | Reverted the fix for [Bug 3274728] committed on 2011-04-06 (rev [caf317ab68]) and replaced with one ... check-in: 04f804b338 user: andreask tags: trunk | |
|
2011-05-24
| ||
| 12:39 | Merge to feature branch check-in: dcbbc346fa user: dkf tags: dkf-notifier-poll | |
Changes to unix/Makefile.in.
| ︙ | |||
336 337 338 339 340 341 342 | 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 | - + |
STUB_LIB_OBJS = tclStubLib.o tclTomMathStubLib.o tclOOStubLib.o ${COMPAT_OBJS}
UNIX_OBJS = tclUnixChan.o tclUnixEvent.o tclUnixFCmd.o \
tclUnixFile.o tclUnixPipe.o tclUnixSock.o \
tclUnixTime.o tclUnixInit.o tclUnixThrd.o \
tclUnixCompat.o
|
| ︙ | |||
549 550 551 552 553 554 555 | 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 | - + | $(UNIX_DIR)/tclUnixTest.c \ $(UNIX_DIR)/tclUnixThrd.c \ $(UNIX_DIR)/tclUnixTime.c \ $(UNIX_DIR)/tclUnixInit.c \ $(UNIX_DIR)/tclUnixCompat.c NOTIFY_SRCS = \ |
| ︙ | |||
1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 | 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 | + + + | tclUnixNotfy.o: $(UNIX_DIR)/tclUnixNotfy.c $(CC) -c $(CC_SWITCHES) $(UNIX_DIR)/tclUnixNotfy.c tclUnixPipe.o: $(UNIX_DIR)/tclUnixPipe.c $(CC) -c $(CC_SWITCHES) $(UNIX_DIR)/tclUnixPipe.c tclUnixPoll.o: $(UNIX_DIR)/tclUnixPoll.c $(CC) -c $(CC_SWITCHES) $(UNIX_DIR)/tclUnixPoll.c tclUnixSock.o: $(UNIX_DIR)/tclUnixSock.c $(CC) -c $(CC_SWITCHES) $(UNIX_DIR)/tclUnixSock.c tclUnixTest.o: $(UNIX_DIR)/tclUnixTest.c $(CC) -c $(APP_CC_SWITCHES) $(UNIX_DIR)/tclUnixTest.c tclUnixThrd.o: $(UNIX_DIR)/tclUnixThrd.c |
| ︙ |
Changes to unix/configure.
more than 10,000 changes
Changes to unix/configure.in.
| ︙ | |||
265 266 267 268 269 270 271 272 273 274 275 276 277 278 | 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 | + + + + + |
# This appears to be true only on the RS/6000 under AIX. Some
# systems like OSF/1 have a sys/select.h that's of no use, and
# other systems like SCO UNIX have a sys/select.h that's
# pernicious. If "fd_set" isn't defined anywhere then set a
# special flag.
#--------------------------------------------------------------------
NOTIFIER_IMPL=tclUnixNotfy.o
AC_ARG_ENABLE(poll,[AS_HELP_STRING([--enable-poll],
[use poll() system call for notifier instead of select()])], [
NOTIFIER_IMPL=tclUnixPoll.o])
AC_CACHE_CHECK([for fd_set in sys/types], tcl_cv_type_fd_set, [
AC_TRY_COMPILE([#include <sys/types.h>],[fd_set readMask, writeMask;],
tcl_cv_type_fd_set=yes, tcl_cv_type_fd_set=no)])
tcl_ok=$tcl_cv_type_fd_set
if test $tcl_ok = no; then
AC_CACHE_CHECK([for fd_mask in sys/select], tcl_cv_grep_fd_mask, [
AC_EGREP_HEADER(fd_mask, sys/select.h,
|
| ︙ | |||
946 947 948 949 950 951 952 953 954 955 956 957 958 959 | 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 | + + |
AC_SUBST(EXTRA_INSTALL)
AC_SUBST(EXTRA_INSTALL_BINARIES)
AC_SUBST(EXTRA_BUILD_HTML)
AC_SUBST(EXTRA_TCLSH_LIBS)
AC_SUBST(DLTEST_LD)
AC_SUBST(DLTEST_SUFFIX)
AC_SUBST(NOTIFIER_IMPL)
dnl Disable the automake-friendly normalization of LIBOBJS
dnl performed by autoconf 2.53 and later. It's not correct for us.
define([_AC_LIBOBJS_NORMALIZE],[])
AC_CONFIG_FILES([
Makefile:../unix/Makefile.in
dltest/Makefile:../unix/dltest/Makefile.in
|
| ︙ |
Added unix/tclUnixPoll.c.