Activity for nutilius

  • nutilius nutilius created ticket #26

    No status line in output for rest interfce for HTTP error 400 (Bad request)

  • nutilius nutilius posted a comment on ticket #25

    Connect() and Disconnect() executed as REST service is needed for switching the system console for sysplex when one system is going down and another must activate console. It is done by system automation request switching from ona NON-SNA session on OSA-ICC card to another NON-SNA session on another OSA-ICC.

  • nutilius nutilius posted a comment on ticket #25

    No - I have macro which I run during opened 3270 session. It present menu with different environments (TSO, MVS, TCPIP, VTAM etc), and after selection there is second level menu with commands like D TCPIP,,NETSTAT which is put on the 3270 screen and ready to edit or just to press Enter and execute. Currently I run this in tmux and macro just open second tmux pane (another terminal) and presents the selection. But I haven't always possibility to run it in tmux - so displaying in the same terminal...

  • nutilius nutilius posted a comment on ticket #25

    If you run c3270 without target address, you are in command mode, but after execute Connect(), the emulator switch to 3270 mode. Why this situation cannot be the same when you call Connect from rest interface? The switch to 3270 could be done only if connection is valid, if not - command mode is still active.

  • nutilius nutilius posted a comment on ticket #25

    Yes, in my opinion this additional flag is good option. Anyway if you have Escape() action whic is going to command mode, maybe opposite Acion in script shoud also exists? I have yet another problem but in this case it is about execution of macro and and show interaction with user during that (like selection). Should I descibe it as another case? Or maybe request for new feature? I would like to call macro whic givethe user some interaction, but when I call Script, the called process don't see stdin...

  • nutilius nutilius posted a comment on ticket #25

    Is above response related to this case or my second case about refreshing screen after Connect? Anyway I attach trace requested by you.

  • nutilius nutilius posted a comment on ticket #25

    I've temporary fixed it by add after line 183 in scroll.c if ( and closing } before end of function definition.

  • nutilius nutilius modified a comment on ticket #25

    Running under gdb with debuginfo points to memmove in line 196 of scroll.c c3270> [New Thread 0x7ffff7fc3740 (LWP 1014859)] [New Thread 0x7ffff7299700 (LWP 1014860)] [Thread 0x7ffff7299700 (LWP 1014860) exited] Thread 1 "c3270" received signal SIGSEGV, Segmentation fault. 0x00005555555c63ea in scroll_save (n=43) at ../../../Common/scroll.c:196 196 memmove(ea_save[scroll_next], (gdb) l 191 } 192 193 /* Save the screen contents. */ 194 for (row = 0; row < n; row++) { 195 if (row < ROWS) { 196 memmove(ea_save[scroll_next],...

  • nutilius nutilius posted a comment on ticket #25

    Running under gdb with debuginfo points to memmove in line 196 of scroll.c c3270> [New Thread 0x7ffff7fc3740 (LWP 1014859)] [New Thread 0x7ffff7299700 (LWP 1014860)] [Thread 0x7ffff7299700 (LWP 1014860) exited] Thread 1 "c3270" received signal SIGSEGV, Segmentation fault. 0x00005555555c63ea in scroll_save (n=43) at ../../../Common/scroll.c:196 196 memmove(ea_save[scroll_next], (gdb) l 191 } 192 193 /* Save the screen contents. */ 194 for (row = 0; row < n; row++) { 195 if (row < ROWS) { 196 memmove(ea_save[scroll_next],...

  • nutilius nutilius created ticket #25

    Segmentation fault in c3270 when use rest stext Connect call

  • nutilius nutilius posted a comment on discussion Help

    The previous problem was because I didn't change all nul words using vi: %s/ nul / \/dev\/null /g but some nul words are followed by tab char so I have to change also like this: %s/ nul\t/ \dev\/null\t/g Additionally patch file is in MS-DOS format (CRLF in the end of line) and shoud be converted to Unix before use. After this I've received all patched files, also not-existent as gccmvs.txt and compile. You wrote that on the same level like gcc should be also pdos/pdpclib but readme lacks information...

  • nutilius nutilius modified a comment on discussion Help

    So I've downloaded patch file pointed by you, changed null to /dev/null and I've patched gcc source code (unpacked from gcc-3.2.3.tar.gz). Next i made: ./configure --target=i370-ibm-opened make and receive an error: make[1]: *** [Makefile:649: cp/decl.o] Error 1 make[1]: Leaving directory '/home/nome/projects/gcc-3.2.3/gcc' make: *** [Makefile:1604: all-gcc] Error 2 what is done by: cp/decl.c:13667:7: note: in expansion of macro ‘DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P’ if (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P...

  • nutilius nutilius posted a comment on discussion Help

    So I've downloaded patch file pointed by you, changed null to /dev/null and I've patched gcc source code (unpacked from gcc-3.2.3.tar.gz). Next i made: ./configure --target=i370-ibm-opened make and receive an error: make[1]: *** [Makefile:649: cp/decl.o] Error 1 make[1]: Leaving directory '/home/nome/projects/gcc-3.2.3/gcc' make: *** [Makefile:1604: all-gcc] Error 2 what is done by: cp/decl.c:13667:7: note: in expansion of macro ‘DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P’ if (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P...

  • nutilius nutilius posted a comment on discussion Help

    I don't understant, sorry. You wrote about gccmvs.txt but where? I've browsed files in project and don't see source code. In GCCCMS is binary version for VM, in GCCMVS binary version for MVS (xmit) and windows (exe). Inside zip files are readme files but nowhere I see compiler source code and compile script. Am I blind? Should I go to gcc site and download version 3.2? I want to build cross-compiler for 370 architectire to create standalone programs (f.ex. to work in VM without CMS). For 390 current...

  • nutilius nutilius posted a comment on discussion Help

    Did you build the cross-compiler on Linux? I'm looking for the instruction how to build gcc for s370 as the cross-compiler on Linux. Can you help?

  • nutilius nutilius posted a comment on discussion Open Discussion

    Thank you for your explanation. I have small suggestion to the web site for beginners like me. Could you put information, that PIC18 code can be assembled and linked only with MPLABX IDE till ver. 5.35? For someone who is not very experienced with PICs processors and environment, such notice can help. Thank you once again.

  • nutilius nutilius posted a comment on discussion Open Discussion

    Does it means that MPLABX 5.35 is tha last version which can be used with FF ?

  • nutilius nutilius modified a comment on discussion Open Discussion

    Hi Could someone explain me which MPLABX IDE I should use o open FF project for PIC18. I'm back after long time to FF, previously used MPLABX 4.15 with MPASMWIN, but now when I try to open project I've received message about not valid (too old) MPLABX IDE. Current versions of MPLABX doesn't have MPWINASM tools and I dont know what should I do. Piotr

  • nutilius nutilius posted a comment on discussion Open Discussion

    Hi Could someone explain me which MPLABX IDE I should use o open FF project for PIC18. I'm back after long time to FF, previously used MPLABX 4.15 with MPASMWIN, but now when I try to open project I've received message about not valid (too old) MPLABX IDE. Current versions of MPLABX doesn't have MPLABWIN.ASM environment and I dont know what should I do. Piotr

  • nutilius nutilius posted a comment on ticket #553

    BTW I thought that MT is TM (Trade Mark) what of course doesn't make sense :-D

  • nutilius nutilius posted a comment on ticket #553

    After small investigation and removing so files from /usr/local/lib64 I found that regina doesn't work anymore. So once again I typed make install and saw messages: ./install-sh -s -m 755 -c ./libregina.so.3.9 /usr/local/lib/x86_64-linux-gnu/libregina.so.3.9 rm -f /usr/local/lib/x86_64-linux-gnu/libregina.so.3 (cd /usr/local/lib/x86_64-linux-gnu;ln -s libregina.so.3.9 libregina.so.3 ) rm -f /usr/local/lib/x86_64-linux-gnu/libregina.so (cd /usr/local/lib/x86_64-linux-gnu;ln -s libregina.so.3 libregina.so...

  • nutilius nutilius modified a comment on ticket #553

    Indeed if I run ldd, it points to libregina.so.3 => /usr/local/lib64/libregina.so.3 (0x00007f5577a7b000) and if I check /usr/local/lib64 : ls -l /usr/local/lib64/libregina.* -rw-r--r-- 1 root staff 4550196 wrz 21 2019 /usr/local/lib64/libregina.a lrwxrwxrwx 1 root staff 14 wrz 21 2019 /usr/local/lib64/libregina.so -> libregina.so.3 lrwxrwxrwx 1 root staff 16 wrz 21 2019 /usr/local/lib64/libregina.so.3 -> libregina.so.3.9 -rwxr-xr-x 1 root staff 557648 wrz 21 2019 /usr/local/lib64/libregina.so.3.9...

  • nutilius nutilius posted a comment on ticket #553

    Indeed if I run ldd, it points to libregina.so.3 => /usr/local/lib64/libregina.so.3 (0x00007f5577a7b000) and if I check /usr/local/lib64 : ls -l /usr/local/lib64/libregina.* -rw-r--r-- 1 root staff 4550196 wrz 21 2019 /usr/local/lib64/libregina.a lrwxrwxrwx 1 root staff 14 wrz 21 2019 /usr/local/lib64/libregina.so -> libregina.so.3 lrwxrwxrwx 1 root staff 16 wrz 21 2019 /usr/local/lib64/libregina.so.3 -> libregina.so.3.9 -rwxr-xr-x 1 root staff 557648 wrz 21 2019 /usr/local/lib64/libregina.so.3.9...

  • nutilius nutilius created ticket #553

    Wrong version returned from regina -v

  • nutilius nutilius created ticket #588

    Define/change color used for highlight current line

  • nutilius nutilius created ticket #16

    SIGSEGV in httpd_dyn_complete during running Script Info action

  • nutilius nutilius posted a comment on ticket #16

    Hi Paul ! For me it's OK. The code presented in the sample assume that only port is required, but it is not enough in all circumstances. In my opinion It should be full IP address, specified in httpd parameter, plus assigned port (static or dynamic). If someone set httpd parameter with asterix (0.0.0.0 - listenning on all interfaces), it should be superseded by loopback address - it still be usable for local scripts. But of course you may have another idea. Kind regards Piotr Kolasinski

  • nutilius nutilius created ticket #16

    Add export of HTTPD port to external macros (X3270HTTPD)

  • nutilius nutilius committed [372100]

    Diffrent short letters for some parameters

  • nutilius nutilius committed [68ae51]

    Changes methood names, set dflt option to "value"

  • nutilius nutilius committed [a860ce]

    Correction for not serviced curs_set (in web ssh )

  • nutilius nutilius imported Code

1