Check-in [a8f2f386e6]
Overview
Comment:TUAPI 0.8
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk | 0.8
Files: files | file ages | folders
SHA1: a8f2f386e65317a6bc277ebeb78aab8e9287cc6e
User & Date: rkeene on 2017-01-10 21:29:24
Other Links: manifest | tags
Context
2017-01-10
21:29
Post-release version increment check-in: 923c88acc0 user: rkeene tags: trunk
21:29
TUAPI 0.8 check-in: a8f2f386e6 user: rkeene tags: trunk, 0.8
21:29
Added documentation for setuid/getuid check-in: 2f6147e93d user: rkeene tags: trunk
Changes

Modified USAGE.md from [a8a7199208] to [002209351e].

1
2
3
4
5
6
7
8
9
10
11
12
13
14
Tcl UNIX API
============

Linux only, currently.


package require tuapi 0.7

High-level Interfaces
---------------------
	::tuapi::mount
	::tuapi::umount
	::tuapi::kill
	::tuapi::killpg





<
|







1
2
3
4
5

6
7
8
9
10
11
12
13
Tcl UNIX API
============

Linux only, currently.


package require tuapi 0.8

High-level Interfaces
---------------------
	::tuapi::mount
	::tuapi::umount
	::tuapi::kill
	::tuapi::killpg

Modified tuapi.c from [5d107fd93d] to [1378de3da1].

3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
	Tcl_ObjSetVar2(interp, Tcl_NewStringObj("::tuapi::const::HOST_NAME_MAX", -1), NULL, Tcl_NewWideIntObj(HOST_NAME_MAX), TCL_GLOBAL_ONLY);

	/* Create high-level user functions */
	Tcl_Eval(interp,
#include "tuapi.tcl.h" 
	);

	Tcl_PkgProvide(interp, "tuapi", "0.7");

	return(TCL_OK);
}







|



3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
	Tcl_ObjSetVar2(interp, Tcl_NewStringObj("::tuapi::const::HOST_NAME_MAX", -1), NULL, Tcl_NewWideIntObj(HOST_NAME_MAX), TCL_GLOBAL_ONLY);

	/* Create high-level user functions */
	Tcl_Eval(interp,
#include "tuapi.tcl.h" 
	);

	Tcl_PkgProvide(interp, "tuapi", "0.8");

	return(TCL_OK);
}