Powered by Apache

CVS log for OpenXM/src/kan96xx/plugin/oxmisc.c

[BACK] Up to [local] / OpenXM / src / kan96xx / plugin

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.32 / (download) - annotate - [select for diffs], Tue Oct 6 11:33:47 2020 UTC (3 years, 7 months ago) by takayama
Branch: MAIN
CVS Tags: HEAD
Changes since 1.31: +22 -20 lines
Diff to previous 1.31 (colored)

All causes of the warnings are fixed.

Revision 1.31 / (download) - annotate - [select for diffs], Mon Aug 29 01:15:01 2016 UTC (7 years, 9 months ago) by takayama
Branch: MAIN
Changes since 1.30: +20 -2 lines
Diff to previous 1.30 (colored)

ox_sm1* families support the ox_reset by asir on windows. (dirty tricks...)

Revision 1.30 / (download) - annotate - [select for diffs], Thu Mar 31 03:22:55 2016 UTC (8 years, 2 months ago) by takayama
Branch: MAIN
Changes since 1.29: +5 -4 lines
Diff to previous 1.29 (colored)

signal is replaced by mysignal for portability.
mysignal calls sigaction.

Revision 1.29 / (download) - annotate - [select for diffs], Thu Oct 8 11:49:37 2015 UTC (8 years, 7 months ago) by takayama
Branch: MAIN
Changes since 1.28: +5 -9 lines
Diff to previous 1.28 (colored)

longjmp --> _longjmp on cygwin.
We use macros MYSETJMP and MYLONGJMP.
There is still a trouble on error handling on ox_sm1.

Revision 1.28 / (download) - annotate - [select for diffs], Sun Sep 27 08:12:42 2015 UTC (8 years, 8 months ago) by takayama
Branch: MAIN
Changes since 1.27: +6 -1 lines
Diff to previous 1.27 (colored)

The sm1 causes a segfault on msys2. See comments in stackmachine.c.
A workaround for the msys2 is added. The trouble of kxx has not yet been fixed.

Revision 1.27 / (download) - annotate - [select for diffs], Wed Nov 6 06:23:24 2013 UTC (10 years, 6 months ago) by takayama
Branch: MAIN
CVS Tags: RELEASE_1_3_1_13b
Changes since 1.26: +2 -2 lines
Diff to previous 1.26 (colored)

return; in int valued functions is replaced by return number;

It still stops with a core for the input
(2).. /ff set
ff ::
cf. coeff.c

Revision 1.26 / (download) - annotate - [select for diffs], Sat May 6 10:53:36 2006 UTC (18 years ago) by takayama
Branch: MAIN
CVS Tags: R_1_3_1-2, RELEASE_1_2_3_12, DEB_REL_1_2_3-9
Changes since 1.25: +4 -1 lines
Diff to previous 1.25 (colored)

A code for a dead server.

Revision 1.25 / (download) - annotate - [select for diffs], Sun Jul 3 11:08:54 2005 UTC (18 years, 11 months ago) by ohara
Branch: MAIN
CVS Tags: KNOPPIX_2006
Changes since 1.24: +2 -1 lines
Diff to previous 1.24 (colored)

Fixed grammatical problem for gcc4.

Revision 1.24 / (download) - annotate - [select for diffs], Thu Jun 16 05:07:24 2005 UTC (18 years, 11 months ago) by takayama
Branch: MAIN
Changes since 1.23: +2 -2 lines
Diff to previous 1.23 (colored)

The initialization of the variables of the type struct object
are added.  It is necessary to initialize the field "attr"
(object attribute) of stuct object.  cf. misc-2005/06/gfan/opt.sm1 test2.

Revision 1.23 / (download) - annotate - [select for diffs], Fri Sep 17 08:46:10 2004 UTC (19 years, 8 months ago) by takayama
Branch: MAIN
CVS Tags: RELEASE_1_2_3
Changes since 1.22: +20 -2 lines
Diff to previous 1.22 (colored)

Changes for OX-RFC104 (OpenXM grid): step 2.
 non-reserve connection also use one time password.
  ox -ox ox_k0  -passControl 1234 -passData 5678
and
  [(oxCreateClient) (localhost) 1300 1200 [(1234) (5678)]] extension

(It has not yet been tested on Windows. Error handling is not robust enough.)

Revision 1.22 / (download) - annotate - [select for diffs], Fri Sep 17 07:27:28 2004 UTC (19 years, 8 months ago) by takayama
Branch: MAIN
Changes since 1.21: +10 -5 lines
Diff to previous 1.21 (colored)

Changes for OX-RFC 104 (OpenXM-grid).
Step 1.  ox_encrypt_104_genPass is introduced.
         oxCreateClient2 accpets two onetime passwords.

Revision 1.21 / (download) - annotate - [select for diffs], Thu Sep 16 23:53:45 2004 UTC (19 years, 8 months ago) by takayama
Branch: MAIN
Changes since 1.20: +6 -4 lines
Diff to previous 1.20 (colored)

Several small changes.
1. Changed an algorithm of oxGenPass.
2. The operator "." is equivalent to "exec" when the argument is an executable
   array.  Example.  { 1 2 add }. message
3. The function [(or_attrs) literal] extension is added.
   In strictMode in var.sm1, or_attrs is called instead of chattrs to
   protect all pre-defined symbols.  The function strictMode is called
   from k0 when it starts.

Revision 1.20 / (download) - annotate - [select for diffs], Mon Mar 8 08:24:42 2004 UTC (20 years, 2 months ago) by takayama
Branch: MAIN
CVS Tags: RELEASE_1_2_2_KNOPPIX_b
Changes since 1.19: +12 -1 lines
Diff to previous 1.19 (colored)

Kan/sm1 and ox_sm1 support the new stackmachine command
SM_executeFunctionWithOptionalArgument.
See also (oxexecWithOpt) usage ;

Revision 1.19 / (download) - annotate - [select for diffs], Wed Feb 25 23:14:35 2004 UTC (20 years, 3 months ago) by takayama
Branch: MAIN
CVS Tags: RELEASE_1_2_2_KNOPPIX
Changes since 1.18: +2 -2 lines
Diff to previous 1.18 (colored)

Corrected a wrong use of errno.
From man errno;
 errno  is defined by the ISO C standard to be a modifiable
       lvalue of type int, and must not be  explicitly  declared;
       errno  may  be a macro.  errno is thread-local; setting it
       in one thread does not  affect  its  value  in  any  other
       thread.

Revision 1.18 / (download) - annotate - [select for diffs], Wed Nov 19 01:02:39 2003 UTC (20 years, 6 months ago) by takayama
Branch: MAIN
Changes since 1.17: +37 -1 lines
Diff to previous 1.17 (colored)

Added debugging utilities (output ox function id's, ...)
Examples:
cat OpenXM-binary-data | ./oxpipe ./ox_sm1 -lisplike
cat OpenXM-binary-data | ./oxpipe ./ox_sm1 -monitor

Revision 1.17 / (download) - annotate - [select for diffs], Tue Nov 18 11:08:27 2003 UTC (20 years, 6 months ago) by takayama
Branch: MAIN
Changes since 1.16: +5 -5 lines
Diff to previous 1.16 (colored)

ox_sm1 works with util/oxpipe, but there still remains bug
to terminate the program.

Revision 1.16 / (download) - annotate - [select for diffs], Sun Jul 20 07:18:45 2003 UTC (20 years, 10 months ago) by takayama
Branch: MAIN
Changes since 1.15: +3 -2 lines
Diff to previous 1.15 (colored)

A workaround for a strange behavior of windows/cygwin accept(2).

Revision 1.15 / (download) - annotate - [select for diffs], Fri Nov 8 02:54:11 2002 UTC (21 years, 6 months ago) by takayama
Branch: MAIN
CVS Tags: RELEASE_1_2_2
Changes since 1.14: +2 -1 lines
Diff to previous 1.14 (colored)

Added a new function oxGetClientList() for kan/k0.
Fixed a bug concerning oxGetClientList with OXRFC 101 (oxc).

Revision 1.14 / (download) - annotate - [select for diffs], Thu Nov 7 23:52:20 2002 UTC (21 years, 6 months ago) by takayama
Branch: MAIN
Changes since 1.13: +24 -1 lines
Diff to previous 1.13 (colored)

Fixed a bug on the linking to generate ox  introduced by the new function
oxGetClientList().

Revision 1.13 / (download) - annotate - [select for diffs], Thu Nov 7 13:32:06 2002 UTC (21 years, 6 months ago) by takayama
Branch: MAIN
Changes since 1.12: +3 -5 lines
Diff to previous 1.12 (colored)

[(oxGetClientList)] extension
returns the list of ox clients.

Revision 1.12 / (download) - annotate - [select for diffs], Sun Feb 24 10:27:20 2002 UTC (22 years, 3 months ago) by takayama
Branch: MAIN
CVS Tags: RELEASE_1_2_1
Changes since 1.11: +18 -2 lines
Diff to previous 1.11 (colored)

setjmp --> sigsetjmp
longjmp --> siglongjmp

Revision 1.11 / (download) - annotate - [select for diffs], Fri Dec 28 08:18:22 2001 UTC (22 years, 5 months ago) by takayama
Branch: MAIN
Changes since 1.10: +2 -2 lines
Diff to previous 1.10 (colored)

Fixed a bug of [(getenv) (OSTYPE)].

Revision 1.10 / (download) - annotate - [select for diffs], Fri Aug 10 13:48:39 2001 UTC (22 years, 9 months ago) by takayama
Branch: MAIN
Changes since 1.9: +15 -13 lines
Diff to previous 1.9 (colored)

Trying to launch ox_asir from sm1 on Windows (TM), but there remain troubles.

Revision 1.9 / (download) - annotate - [select for diffs], Fri May 4 01:06:30 2001 UTC (23 years, 1 month ago) by takayama
Branch: MAIN
Changes since 1.8: +44 -44 lines
Diff to previous 1.8 (colored)

indent-region and untabify.

Revision 1.8 / (download) - annotate - [select for diffs], Sun Dec 3 07:29:39 2000 UTC (23 years, 6 months ago) by takayama
Branch: MAIN
Changes since 1.7: +23 -19 lines
Diff to previous 1.7 (colored)

I'm working to implement OpenXM RFC 101 client code on kan/sm1 and kan/k0.
A preparation is done.

Revision 1.7 / (download) - annotate - [select for diffs], Fri Sep 8 17:30:50 2000 UTC (23 years, 8 months ago) by takayama
Branch: MAIN
CVS Tags: maekawa-ipv6, RELEASE_1_1_3
Changes since 1.6: +3 -3 lines
Diff to previous 1.6 (colored)

Corrected typo:  You peer ---> Your peer.

Revision 1.6 / (download) - annotate - [select for diffs], Fri Sep 8 16:08:42 2000 UTC (23 years, 8 months ago) by takayama
Branch: MAIN
Changes since 1.5: +4 -4 lines
Diff to previous 1.5 (colored)

Correction of a typo: authentication

Revision 1.5 / (download) - annotate - [select for diffs], Mon Mar 20 01:53:47 2000 UTC (24 years, 2 months ago) by takayama
Branch: MAIN
Changes since 1.4: +12 -2 lines
Diff to previous 1.4 (colored)

Removed the initialization like
     FILE *Hoge = stderr;
because stderr is declared as extern FILE *stderr on
LinuxPPC.

Revision 1.4 / (download) - annotate - [select for diffs], Sat Nov 27 01:41:11 1999 UTC (24 years, 6 months ago) by takayama
Branch: MAIN
CVS Tags: RELEASE_20000124, RELEASE_1_1_2
Changes since 1.3: +14 -14 lines
Diff to previous 1.3 (colored)

The new mathcap format is supported.

Revision 1.3 / (download) - annotate - [select for diffs], Wed Nov 3 08:29:40 1999 UTC (24 years, 7 months ago) by takayama
Branch: MAIN
Changes since 1.2: +7 -3 lines
Diff to previous 1.2 (colored)

A security hole to generate one time password is fixed.

Revision 1.2 / (download) - annotate - [select for diffs], Sat Oct 30 02:22:16 1999 UTC (24 years, 7 months ago) by takayama
Branch: MAIN
Changes since 1.1: +3 -2 lines
Diff to previous 1.1 (colored)

A bug of one time password authentification is fixed.
The password should be an array of bytes that terminates with 0.

Revision 1.1.1.1 / (download) - annotate - [select for diffs] (vendor branch), Fri Oct 8 02:12:05 1999 UTC (24 years, 7 months ago) by maekawa
Branch: OpenXM
CVS Tags: ALPHA
Changes since 1.1: +0 -0 lines
Diff to previous 1.1 (colored)

o import OpenXM sources

Revision 1.1 / (download) - annotate - [select for diffs], Fri Oct 8 02:12:05 1999 UTC (24 years, 7 months ago) by maekawa
Branch: MAIN

Initial revision

This form allows you to request diff's between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.




FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>