Differences From Artifact [8e9a9635fe]:
- File tuapi.tcl — part of check-in [72373a7088] at 2014-12-19 00:01:58 on branch trunk — Updated to try to continue loading after an error occurs (user: rkeene, size: 19500) [annotate] [blame] [check-ins using]
To Artifact [d7c3601a8e]:
- File tuapi.tcl — part of check-in [77c233b2a4] at 2014-12-20 06:47:38 on branch trunk — Fixed typo causing tuapi loading to fail (user: rkeene, size: 19501) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
453 454 455 456 457 458 459 |
}
set module [file join $modules_dir $module]
if {$options(call_insmod)} {
if {[catch {
::tuapi::syscall::insmod $module
| | | 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 |
}
set module [file join $modules_dir $module]
if {$options(call_insmod)} {
if {[catch {
::tuapi::syscall::insmod $module
}]} {
continue
}
}
lappend retval $module
}
}
|
| ︙ | ︙ |