nsf

Clone Tools
  • last updated 4 hours ago
Constraints
Constraints: committers
 
Constraints: files
Constraints: dates
- fix debug output wen compiled without --enable-profile

* nsf.c (InvokeShadowedProc): Fix debug output when compiled without --enable-profile. Was originally added on 2-1-0-rc.

* win/rules.vc: Remove artifact from OPTDEFINES.

* win/rules.vc: Avoid type-cast warnings under 64bit MSVC (MSVC > 1300) toolchains due to compiler flags in Tcl headers. Reported as http://core.tcl.tk/tclconfig/tktview?name=ab69a602bf.

merging changes from master brach - move result reporting of nsf::procs into ProcDispatchFinalize() this fixes the result value reporting and timings for nsf::procs

- move result reporting of nsf::procs into ProcDispatchFinalize() this fixes the result value reporting and timings for nsf::procs

Add ticket link to Announcement

Update to ChangeLog

Completed second iteration over announcement

Complete announcement on NSF details

* current.man: Improve wording and fix typo.

Remove merge artifact

Remove merge artifact

merged

Merge branch '2-1-0-rc' of ssh://alice.wu-wien.ac.at/usr/local/src/git-repo/nsf into 2-1-0-rc

nsf.tcl (::nsf::debug::*): Switch to notice severity level

nsf.tcl (::nsf::debug::*): Switch to notice severity level

* Announce2.1.0: Continue working on announcement

- reduce implicit conversions

- define stubproc always, when "-deprecated" was used - use "Debug" severity for debug messages

- fist iteration over announcements

- white space change (avoid tabs)

- add flags for more detailed debugging (optional)

Regenerated man pages

Fix typo

* property.man.inc, variable.man.inc: Add missing doc on -trace option.

Updated stats

Update release docs

Merge branch 'master' into 2-1-0-rc

* nsf.c (GetObjectFromObj, TclDeletesObject): Remove two earlier fixes to deal with ::nsf::object::alloc failing under cmd deletion/recreation. The issue has been tackled more generally by a Tcl-side fix. Background: Since 2005 (commit fcb9ab1df3a9b2d1), in Tcl the cmdEpoch state in delete traces and delete callbacks (deleteProcs, destructors) has been compromised. Bumping the epoch of the cmd under deletion before executing the traces and callbacks had the potential of caching the cmd under in Tcl_Objs beyond its deletion (at least in our code path). In July 2017 (8.7a, commit 54fac92610d3bdd9), this potential realised by removing a guard expression (CMD_IS_DELETED) in the Tcl_Obj cache invalidation logic, which had protected from such invalid caches (as a side effect). As of today (8.7a, commit 71fa1f9c91), the underlying timing problem of epoch bumping has been resolved.