EPICS Controls Argonne National Laboratory

Experimental Physics and
Industrial Control System

1994  1995  1996  1997  1998  1999  2000  2001  2002  2003  2004  2005  2006  2007  2008  2009  2010  2011  2012  2013  2014  2015  2016  2017  2018  <20192020  2021  2022  2023  2024  Index 1994  1995  1996  1997  1998  1999  2000  2001  2002  2003  2004  2005  2006  2007  2008  2009  2010  2011  2012  2013  2014  2015  2016  2017  2018  <20192020  2021  2022  2023  2024 
<== Date ==> <== Thread ==>

Subject: Re: asynMotor device support and the motor specific driver (asynMotorContorller)
From: Allan Serra Braga Bugyi via Tech-talk <[email protected]>
To: Mark Rivers <[email protected]>
Cc: "[email protected]" <[email protected]>
Date: Mon, 8 Apr 2019 18:00:36 +0000

It says:

asynManager:report port “PIasyn3” not found


Please find attached the log.



Allan



De: Mark Rivers <[email protected]>
Enviado: segunda-feira, 8 de abril de 2019 14:10:13
Para: Allan Serra Braga Bugyi
Cc: [email protected]
Assunto: RE: asynMotor device support and the motor specific driver (asynMotorContorller)
 

Hi Allan,

 

What does the following command show?

 

asynReport 10 “PIasyn3”

 

You can also add these commands to your asynMotor.E-712.cmd script after PI_GCS2_CreateController("PIasyn3", "tcpip_e712",3, 0,0, 10, 250)

 

asynSetTraceIOMask("PIasyn3", -1, 0x2)

asynSetTraceMask("PIasyn3", -1, 0xff)

 

This will show lots more debugging info.

 

Mark

 

 

From: Allan Serra Braga Bugyi <[email protected]>
Sent: Monday, April 8, 2019 9:59 AM
To: Mark Rivers <[email protected]>
Cc: [email protected]
Subject: Re: asynMotor device support and the motor specific driver (asynMotorContorller)

 

Hi Mark,

 

Yes, I already instantiated the driver and it's the one you thought. Below I'm showing you the files used to run the IOC. However, the stage is not responding when I do a caput to its VAL field of the motor record, in order to move. I believe that the device support is not able to load the PI commands, the reason for the stage not responding. Besides, I'm not sure if the PI's sources are a complete validated solution, since I didn't find the command set (used by start/build/end transaction) defined anywhere. What I did find were several methods inside the PIGCSController class which use the send/receive message function from asynOctetSyncIO interface in order to communicate with the stage. So I'm confused about using this driver:

- Calling these methods separately using the asynPortDriver methodology of pasynUnser->reason and OUT and INP fields;

- Or letting the device support to do all the job, in case of having the GCS command list loaded.

 

Since the intention is to obviously use the motor record, I'm obliged to go with the second approach.

 

Also, please find a log file attached.

 

--

 

EPICS IOC's files

 

  • st.cmd

 

#!/usr/local/epics/synApps_6_0/support/motor-R6-10-1/motorExApp/WithAsyn/O.linux-x86_64/WithAsyn

< envPaths

## Register all support components

dbLoadDatabase("${TOP}/dbd/WithAsyn.dbd")
WithAsyn_registerRecordDeviceDriver(pdbbase)


drvAsynIPPortConfigure("tcpip_e712","10.0.9.74:50000",0,0,0)
asynOctetConnect("tcpip_e712", "tcpip_e712")
asynOctetSetInputEos("tcpip_e712",0,"\n")

 

< asynMotor.E-712.cmd

 

iocInit

 

  • asynMotor.E-712.cmd

 

dbLoadTemplate("asynMotor.substitutions.E-712")

PI_GCS2_CreateController("PIasyn3", "tcpip_e712",3, 0,0, 10, 250)

dbLoadRecords("${TOP}/db/PI_Support.db","P=PIE712:,R=m1:,PORT=PIasyn3,ADDR=0,TIMEOUT=1")
dbLoadRecords("${TOP}/db/PI_Support.db","P=PIE712:,R=m2:,PORT=PIasyn3,ADDR=1,TIMEOUT=1")
dbLoadRecords("${TOP}/db/PI_Support.db","P=PIE712:,R=m3:,PORT=PIasyn3,ADDR=2,TIMEOUT=1")

dbLoadRecords("${TOP}/db/PI_SupportCtrl.db","P=PIE712:,R=m1:,PORT=PIasyn3,ADDR=0,TIMEOUT=1")

 

 

  • asynMotor.substitutions.E-712

 

file "$(MOTOR)/motorApp/Db/basic_asyn_motor.db"

{

pattern

{P,      N,     M,         DTYP,      PORT,  ADDR,    DESC,        EGU,     DIR,  VELO,  VBAS,  ACCL,  BDST,  BVEL,  BACC, MRES,  PREC,  DHLM,  DLLM,  INIT, RTRY}

{PIE712:,  1,  "m$(N)",  "asynMotor",  "PIasyn3",  0,  "PI-STAGE-725-X",  um,  Pos,  1,     .1,    .2,    0,     1,     .2,  0.000001, 7,  0,     300,   "",  ""}

{PIE712:,  2,  "m$(N)",  "asynMotor",  "PIasyn3",  1,  "PI-STAGE-725-Y",  um,  Pos,  1,     .1,    .2,    0,     1,     .2,  0.000001, 7,  0,     300,   "",  ""}

{PIE712:,  3,  "m$(N)",  "asynMotor",  "PIasyn3",  2,  "PI-STAGE-725-Z",  um,  Pos,  1,     .1,    .2,    0,     1,     .2,  0.000001, 7,  0,     300,   "",  ""}

}

 

Thank you!

Best regards,
Allan S. B. Bugyi
Technology Development Analyst
[email protected]
(+55 19) 3512-3520

SOL/Beamline Software Group
Brazilian Synchrotron Light Laboratory (LNLS)
Center of Research in Energy and Materials (CNPEM)
http://lnls.cnpem.br

 

 


De: Mark Rivers <[email protected]>
Enviado: segunda-feira, 8 de abril de 2019 11:30:23
Para: Allan Serra Braga Bugyi
Cc: [email protected]
Assunto: Re: asynMotor device support and the motor specific driver (asynMotorContorller)

 

Hi Allan,


I am not sure I fully understand your question.  Have you tried to instantiate a controller and load a template file, and received errors, or are you not that far along?


Unfortunately motor does not seem to contain an example for your controller, but it does contain examples for lots of other controllers that use devMotorAsyn.c and asynMotorController.cpp.


Look in motor/iocBoot/iocWithAsyn/st.cmd.mcb4b for a simple example.


It creates a controller object with

MCB4BCreateController("MCB4B1", "serial1", 4, 100, 5000)


In your case I believe this would be:

PI_GCS2_CreateController(const char *portName, const char* asynPort, int numAxes, int priority, int stackSize, int movingPollingRate, int idlePollingRate)


and then loads a template file with several motor records:

dbLoadTemplate "motor.substitutions.mcb4b"

You need to create a template file for your motors.

The motor module is being split into separate repositories for each controller type.  Each repository will contain an example IOC to help with these types of questions.  These example IOCs will require help from the community, since at the APS we don't have all of the types of controllers that are supported, so we can't test examples.

Mark




________________________________
From: [email protected] <[email protected]> on behalf of Allan Serra Braga Bugyi via Tech-talk <[email protected]>
Sent: Monday, April 8, 2019 8:39 AM
To: [email protected]
Subject: asynMotor device support and the motor specific driver (asynMotorContorller)


Hello all,


I need a clarification about the motor module. The asynMotor device support (defined in 'motorApp/MotorSrc/devMotorAsyn.c') tries to find an asynDrvUser interface in init_record function, so that it can find the driver commands with findDrvInfo function. I'm using the asynMotorController driver that implements the PI's command set GCS. How can I connect this driver with the motor record through asynMotor device support?


Additional information:

A class diagram of the PI sources (please ignore the error message; using motor 6-11 now)

[cid:b8eb7e61-f6f9-41d6-8500-6813e6d2e809]


Thank you!
Allan S. B. Bugyi
Technology Development Analyst
[email protected]
(+55 19) 3512-3520

SOL/Beamline Software Group
Brazilian Synchrotron Light Laboratory (LNLS)
Center of Research in Energy and Materials (CNPEM)
http://lnls.cnpem.br
<http://lnls.cnpem.br>



Aviso Legal: Esta mensagem e seus anexos podem conter informações confidenciais e/ou de uso restrito. Observe atentamente seu conteúdo e considere eventual consulta ao remetente antes de copiá-la, divulgá-la ou distribuí-la. Se você recebeu esta mensagem por engano, por favor avise o remetente e apague-a imediatamente.

Disclaimer: This email and its attachments may contain confidential and/or privileged information. Observe its content carefully and consider possible querying to the sender before copying, disclosing or distributing it. If you have received this email by mistake, please notify the sender and delete it immediately.

#!/usr/local/epics/motor-2019-04-02/motorExApp/WithAsyn/O.linux-x86_64/WithAsyn
epicsEnvSet("EPICS_IOC_LOG_INET", "127.0.0.1")
< envPaths
epicsEnvSet("ARCH","linux-x86_64")
epicsEnvSet("IOC","iocWithAsyn")
epicsEnvSet("TOP","/usr/local/epics/motor-2019-04-02")
epicsEnvSet("SUPPORT","/usr/local/epics/synApps_6_0/support")
epicsEnvSet("ASYN","/usr/local/epics/synApps/support_6_0/asyn-R4-33")
epicsEnvSet("SNCSEQ","/usr/local/epics/synApps/support_6_0/seq-2-2-5")
epicsEnvSet("BUSY","/usr/local/epics/synApps_6_0/support/busy-R1-7")
epicsEnvSet("EPICS_BASE","/usr/local/epics/base_3_15_6")
epicsEnvSet("IPAC","/usr/local/epics/synApps_6_0/support/ipac-2-15")
epicsEnvSet("MOTOR","/usr/local/epics/motor-2019-04-02")
## Register all support components
dbLoadDatabase("/usr/local/epics/motor-2019-04-02/dbd/WithAsyn.dbd")
WithAsyn_registerRecordDeviceDriver(pdbbase)
drvAsynIPPortConfigure("tcpip_e712","10.0.9.74:50000",0,0,0)
asynOctetConnect("tcpip_e712", "tcpip_e712")
asynOctetSetInputEos("tcpip_e712",0,"\n")
asynSetTraceIOMask("tcpip_e712", -1 0x2)
asynSetTraceMask("tcpip_e712", -1, 0xff)
< asynMotor.E-712.cmd
dbLoadTemplate("asynMotor.substitutions.E-712")
PI_GCS2_CreateController("PIasyn3", "tcpip_e712",3, 0,0, 10, 250)
2019/04/08 14:50:40.795 tcpip_e712 lockPort
2019/04/08 14:50:40.795 tcpip_e712 set Eos 1
\n
2019/04/08 14:50:40.795 asynOctetSyncIO setInputEos eoslen 1
2019/04/08 14:50:40.795 tcpip_e712 unlockPort
2019/04/08 14:50:40.795 tcpip_e712 lockPort
2019/04/08 14:50:40.795 tcpip_e712 set Eos 0
2019/04/08 14:50:40.795 asynOctetSyncIO setOutputEos eoslen 0
2019/04/08 14:50:40.795 tcpip_e712 unlockPort
2019/04/08 14:50:40.795 PIInterface::sendAndReceive() sending "*IDN?"
2019/04/08 14:50:40.795 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.795 tcpip_e712 asynManager::queueLockPort created queueLockPortPvt=0x55f6a89776f0
2019/04/08 14:50:40.795 tcpip_e712 asynManager::queueLockPort created queueLockPortPvt=0x55f6a89776f0, event=0x55f6a89797e0, mutex=0x55f6a8979890
2019/04/08 14:50:40.795 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a8979890
2019/04/08 14:50:40.795 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.795 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.795 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.795 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.795 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.795 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.795 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.795 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.795 10.0.9.74:50000 write.
2019/04/08 14:50:40.795 10.0.9.74:50000 write 5
*IDN?
2019/04/08 14:50:40.795 wrote 5 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.795 tcpip_e712 wrote
*IDN?
2019/04/08 14:50:40.795 asynOctetSyncIO wrote:
*IDN?
2019/04/08 14:50:40.795 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.795 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.795 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a8979890 complete.
2019/04/08 14:50:40.795 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.795 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a8979890
2019/04/08 14:50:40.795 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.795 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.795 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.795 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.795 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.795 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.795 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.795 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.795 tcpip_e712 flush
2019/04/08 14:50:40.795 10.0.9.74:50000 flush
2019/04/08 14:50:40.795 10.0.9.74:50000 write.
2019/04/08 14:50:40.795 10.0.9.74:50000 write 1
\n
2019/04/08 14:50:40.795 wrote 1 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.795 tcpip_e712 wrote
\n
2019/04/08 14:50:40.795 asynOctetSyncIO wrote:
\n
2019/04/08 14:50:40.795 10.0.9.74:50000 read.
2019/04/08 14:50:40.796 10.0.9.74:50000 read 47
(c)2015 Physik Instrumente (PI) GmbH & Co. KG, 
2019/04/08 14:50:40.796 tcpip_e712 read
(c)2015 Physik Instrumente (PI) GmbH & Co. KG, 
2019/04/08 14:50:40.796 10.0.9.74:50000 read.
2019/04/08 14:50:40.796 10.0.9.74:50000 read 7
E-727, 
2019/04/08 14:50:40.796 tcpip_e712 read
E-727, 
2019/04/08 14:50:40.796 10.0.9.74:50000 read.
2019/04/08 14:50:40.797 10.0.9.74:50000 read 12
0118027690, 
2019/04/08 14:50:40.797 tcpip_e712 read
0118027690, 
2019/04/08 14:50:40.797 10.0.9.74:50000 read.
2019/04/08 14:50:40.797 10.0.9.74:50000 read 12
14.04.01.02\n
2019/04/08 14:50:40.797 tcpip_e712 read
14.04.01.02\n
2019/04/08 14:50:40.797 asynOctetSyncIO read:
(c)2015 Physik Instrumente (PI) GmbH & Co. KG, E-727, 0118027690, 14.04.01.02
2019/04/08 14:50:40.797 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.797 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.797 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a8979890 complete.
2019/04/08 14:50:40.797 PIInterface::sendAndReceive() received "(c)2015 Physik Instrumente (PI) GmbH & Co. KG, E-727, 0118027690, 14.04.01.02"
2019/04/08 14:50:40.797 read from tcpip_e712: (c)2015 Physik Instrumente (PI) GmbH & Co. KG, E-727, 0118027690, 14.04.01.02
2019/04/08 14:50:40.797 PIInterface::sendAndReceive() sending "VEL?"
2019/04/08 14:50:40.797 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.797 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a8979890
2019/04/08 14:50:40.797 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.797 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.797 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.797 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.797 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.797 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.797 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.797 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.797 10.0.9.74:50000 write.
2019/04/08 14:50:40.797 10.0.9.74:50000 write 4
VEL?
2019/04/08 14:50:40.797 wrote 4 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.797 tcpip_e712 wrote
VEL?
2019/04/08 14:50:40.797 asynOctetSyncIO wrote:
VEL?
2019/04/08 14:50:40.797 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.797 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.797 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a8979890 complete.
2019/04/08 14:50:40.797 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.797 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a8979890
2019/04/08 14:50:40.797 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.797 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.797 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.797 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.797 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.797 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.797 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.797 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.797 tcpip_e712 flush
2019/04/08 14:50:40.797 10.0.9.74:50000 flush
2019/04/08 14:50:40.797 10.0.9.74:50000 write.
2019/04/08 14:50:40.797 10.0.9.74:50000 write 1
\n
2019/04/08 14:50:40.797 wrote 1 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.797 tcpip_e712 wrote
\n
2019/04/08 14:50:40.797 asynOctetSyncIO wrote:
\n
2019/04/08 14:50:40.797 10.0.9.74:50000 read.
2019/04/08 14:50:40.798 10.0.9.74:50000 read 1
1
2019/04/08 14:50:40.798 tcpip_e712 read
1
2019/04/08 14:50:40.798 10.0.9.74:50000 read.
2019/04/08 14:50:40.798 10.0.9.74:50000 read 1
=
2019/04/08 14:50:40.798 tcpip_e712 read
=
2019/04/08 14:50:40.798 10.0.9.74:50000 read.
2019/04/08 14:50:40.798 10.0.9.74:50000 read 17
7.500000000e+03 \n
2019/04/08 14:50:40.798 tcpip_e712 read
7.500000000e+03 \n
2019/04/08 14:50:40.798 asynOctetSyncIO read:
1=7.500000000e+03 
2019/04/08 14:50:40.798 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.798 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.798 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a8979890 complete.
2019/04/08 14:50:40.798 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.798 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a8979890
2019/04/08 14:50:40.798 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.798 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.798 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.798 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.798 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.798 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.798 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.798 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.798 10.0.9.74:50000 read.
2019/04/08 14:50:40.798 10.0.9.74:50000 read 1
2
2019/04/08 14:50:40.798 tcpip_e712 read
2
2019/04/08 14:50:40.798 10.0.9.74:50000 read.
2019/04/08 14:50:40.799 10.0.9.74:50000 read 1
=
2019/04/08 14:50:40.799 tcpip_e712 read
=
2019/04/08 14:50:40.799 10.0.9.74:50000 read.
2019/04/08 14:50:40.799 10.0.9.74:50000 read 17
7.500000000e+03 \n
2019/04/08 14:50:40.799 tcpip_e712 read
7.500000000e+03 \n
2019/04/08 14:50:40.799 asynOctetSyncIO read:
2=7.500000000e+03 
2019/04/08 14:50:40.799 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.799 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.799 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a8979890 complete.
2019/04/08 14:50:40.799 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.799 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a8979890
2019/04/08 14:50:40.799 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.799 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.799 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.799 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.799 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.799 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.799 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.799 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.799 10.0.9.74:50000 read.
2019/04/08 14:50:40.799 10.0.9.74:50000 read 1
3
2019/04/08 14:50:40.799 tcpip_e712 read
3
2019/04/08 14:50:40.799 10.0.9.74:50000 read.
2019/04/08 14:50:40.799 10.0.9.74:50000 read 1
=
2019/04/08 14:50:40.799 tcpip_e712 read
=
2019/04/08 14:50:40.799 10.0.9.74:50000 read.
2019/04/08 14:50:40.799 10.0.9.74:50000 read 16
2.000000000e+04\n
2019/04/08 14:50:40.799 tcpip_e712 read
2.000000000e+04\n
2019/04/08 14:50:40.799 asynOctetSyncIO read:
3=2.000000000e+04
2019/04/08 14:50:40.799 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.799 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.799 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a8979890 complete.
2019/04/08 14:50:40.800 PIInterface::sendAndReceive() received "1=7.500000000e+03 
2=7.500000000e+03 
3=2.000000000e+04"
2019/04/08 14:50:40.800 PIInterface::sendAndReceive() sending "SAI?"
2019/04/08 14:50:40.800 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.800 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a8979890
2019/04/08 14:50:40.800 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.800 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.800 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.800 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.800 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.800 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.800 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.800 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.800 10.0.9.74:50000 write.
2019/04/08 14:50:40.800 10.0.9.74:50000 write 4
SAI?
2019/04/08 14:50:40.800 wrote 4 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.800 tcpip_e712 wrote
SAI?
2019/04/08 14:50:40.800 asynOctetSyncIO wrote:
SAI?
2019/04/08 14:50:40.800 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.800 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.800 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a8979890 complete.
2019/04/08 14:50:40.800 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.800 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a8979890
2019/04/08 14:50:40.800 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.800 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.800 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.800 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.800 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.800 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.800 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.800 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.800 tcpip_e712 flush
2019/04/08 14:50:40.800 10.0.9.74:50000 flush
2019/04/08 14:50:40.800 10.0.9.74:50000 write.
2019/04/08 14:50:40.800 10.0.9.74:50000 write 1
\n
2019/04/08 14:50:40.800 wrote 1 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.800 tcpip_e712 wrote
\n
2019/04/08 14:50:40.800 asynOctetSyncIO wrote:
\n
2019/04/08 14:50:40.800 10.0.9.74:50000 read.
2019/04/08 14:50:40.801 10.0.9.74:50000 read 3
1 \n
2019/04/08 14:50:40.801 tcpip_e712 read
1 \n
2019/04/08 14:50:40.801 asynOctetSyncIO read:
1 
2019/04/08 14:50:40.801 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.801 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.801 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a8979890 complete.
2019/04/08 14:50:40.801 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.801 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a8979890
2019/04/08 14:50:40.801 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.801 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.801 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.801 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.801 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.801 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.801 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.801 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.801 10.0.9.74:50000 read.
2019/04/08 14:50:40.801 10.0.9.74:50000 read 3
2 \n
2019/04/08 14:50:40.801 tcpip_e712 read
2 \n
2019/04/08 14:50:40.801 asynOctetSyncIO read:
2 
2019/04/08 14:50:40.801 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.801 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.801 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a8979890 complete.
2019/04/08 14:50:40.801 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.801 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a8979890
2019/04/08 14:50:40.801 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.801 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.801 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.801 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.801 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.801 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.801 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.801 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.801 10.0.9.74:50000 read.
2019/04/08 14:50:40.801 10.0.9.74:50000 read 2
3\n
2019/04/08 14:50:40.801 tcpip_e712 read
3\n
2019/04/08 14:50:40.801 asynOctetSyncIO read:
3
2019/04/08 14:50:40.801 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.801 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.801 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a8979890 complete.
2019/04/08 14:50:40.801 PIInterface::sendAndReceive() received "1 
2 
3"
PIasynAxis::PIasynAxis() 0: 1
2019/04/08 14:50:40.801 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.801 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a8979890
2019/04/08 14:50:40.801 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.801 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.801 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.801 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.801 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.801 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.801 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.801 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.801 10.0.9.74:50000 write.
2019/04/08 14:50:40.801 10.0.9.74:50000 write 7
SVO 1 1
2019/04/08 14:50:40.801 wrote 7 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.801 tcpip_e712 wrote
SVO 1 1
2019/04/08 14:50:40.801 asynOctetSyncIO wrote:
SVO 1 1
2019/04/08 14:50:40.801 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.801 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.801 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a8979890 complete.
2019/04/08 14:50:40.801 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.801 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a8979890
2019/04/08 14:50:40.801 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.801 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.801 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.801 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.801 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.801 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.801 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.801 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.801 10.0.9.74:50000 write.
2019/04/08 14:50:40.801 10.0.9.74:50000 write 1
\n
2019/04/08 14:50:40.801 wrote 1 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.801 tcpip_e712 wrote
\n
2019/04/08 14:50:40.801 asynOctetSyncIO wrote:
\n
2019/04/08 14:50:40.801 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.801 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.801 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a8979890 complete.
2019/04/08 14:50:40.801 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.801 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a8979890
2019/04/08 14:50:40.801 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.801 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.801 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.801 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.801 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.801 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.801 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.801 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.801 10.0.9.74:50000 write.
2019/04/08 14:50:40.801 10.0.9.74:50000 write 4
ERR?
2019/04/08 14:50:40.801 wrote 4 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.801 tcpip_e712 wrote
ERR?
2019/04/08 14:50:40.801 asynOctetSyncIO wrote:
ERR?
2019/04/08 14:50:40.801 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.801 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.801 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a8979890 complete.
2019/04/08 14:50:40.801 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.801 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a8979890
2019/04/08 14:50:40.801 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.801 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.801 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.801 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.801 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.801 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.801 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.801 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.801 tcpip_e712 flush
2019/04/08 14:50:40.801 10.0.9.74:50000 flush
2019/04/08 14:50:40.801 10.0.9.74:50000 write.
2019/04/08 14:50:40.801 10.0.9.74:50000 write 1
\n
2019/04/08 14:50:40.801 wrote 1 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.801 tcpip_e712 wrote
\n
2019/04/08 14:50:40.801 asynOctetSyncIO wrote:
\n
2019/04/08 14:50:40.801 10.0.9.74:50000 read.
2019/04/08 14:50:40.803 10.0.9.74:50000 read 2
0\n
2019/04/08 14:50:40.803 tcpip_e712 read
0\n
2019/04/08 14:50:40.803 asynOctetSyncIO read:
0
2019/04/08 14:50:40.803 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.803 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.803 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a8979890 complete.
2019/04/08 14:50:40.803 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.803 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a8979890
2019/04/08 14:50:40.803 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.803 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.803 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.803 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.803 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.803 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.803 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.803 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.803 10.0.9.74:50000 write.
2019/04/08 14:50:40.803 10.0.9.74:50000 write 6
VEL? 1
2019/04/08 14:50:40.803 wrote 6 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.803 tcpip_e712 wrote
VEL? 1
2019/04/08 14:50:40.803 asynOctetSyncIO wrote:
VEL? 1
2019/04/08 14:50:40.803 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.803 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.803 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a8979890 complete.
2019/04/08 14:50:40.803 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.803 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a8979890
2019/04/08 14:50:40.803 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.803 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.803 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.803 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.803 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.803 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.803 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.803 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.803 tcpip_e712 flush
2019/04/08 14:50:40.803 10.0.9.74:50000 flush
2019/04/08 14:50:40.803 10.0.9.74:50000 write.
2019/04/08 14:50:40.803 10.0.9.74:50000 write 1
\n
2019/04/08 14:50:40.803 wrote 1 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.803 tcpip_e712 wrote
\n
2019/04/08 14:50:40.803 asynOctetSyncIO wrote:
\n
2019/04/08 14:50:40.803 10.0.9.74:50000 read.
2019/04/08 14:50:40.804 10.0.9.74:50000 read 1
1
2019/04/08 14:50:40.804 tcpip_e712 read
1
2019/04/08 14:50:40.804 10.0.9.74:50000 read.
2019/04/08 14:50:40.804 10.0.9.74:50000 read 1
=
2019/04/08 14:50:40.804 tcpip_e712 read
=
2019/04/08 14:50:40.804 10.0.9.74:50000 read.
2019/04/08 14:50:40.804 10.0.9.74:50000 read 16
7.500000000e+03\n
2019/04/08 14:50:40.804 tcpip_e712 read
7.500000000e+03\n
2019/04/08 14:50:40.804 asynOctetSyncIO read:
1=7.500000000e+03
2019/04/08 14:50:40.804 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.804 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.804 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a8979890 complete.
2019/04/08 14:50:40.804 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.804 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a8979890
2019/04/08 14:50:40.804 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.804 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.804 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.804 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.805 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.805 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.805 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.805 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.805 10.0.9.74:50000 write.
2019/04/08 14:50:40.805 10.0.9.74:50000 write 6
POS? 1
2019/04/08 14:50:40.805 wrote 6 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.805 tcpip_e712 wrote
POS? 1
2019/04/08 14:50:40.805 asynOctetSyncIO wrote:
POS? 1
2019/04/08 14:50:40.805 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.805 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.805 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a8979890 complete.
2019/04/08 14:50:40.805 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.805 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a8979890
2019/04/08 14:50:40.805 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.805 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.805 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.805 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.805 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.805 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.805 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.805 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.805 tcpip_e712 flush
2019/04/08 14:50:40.805 10.0.9.74:50000 flush
2019/04/08 14:50:40.805 10.0.9.74:50000 write.
2019/04/08 14:50:40.805 10.0.9.74:50000 write 1
\n
2019/04/08 14:50:40.805 wrote 1 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.805 tcpip_e712 wrote
\n
2019/04/08 14:50:40.805 asynOctetSyncIO wrote:
\n
2019/04/08 14:50:40.805 10.0.9.74:50000 read.
2019/04/08 14:50:40.805 10.0.9.74:50000 read 1
1
2019/04/08 14:50:40.805 tcpip_e712 read
1
2019/04/08 14:50:40.805 10.0.9.74:50000 read.
2019/04/08 14:50:40.806 10.0.9.74:50000 read 1
=
2019/04/08 14:50:40.806 tcpip_e712 read
=
2019/04/08 14:50:40.806 10.0.9.74:50000 read.
2019/04/08 14:50:40.806 10.0.9.74:50000 read 16
1.754476929e+01\n
2019/04/08 14:50:40.806 tcpip_e712 read
1.754476929e+01\n
2019/04/08 14:50:40.806 asynOctetSyncIO read:
1=1.754476929e+01
2019/04/08 14:50:40.806 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.806 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.806 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a8979890 complete.
2019/04/08 14:50:40.806 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.806 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a8979890
2019/04/08 14:50:40.806 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.806 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.806 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.806 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.806 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.806 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.806 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.806 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.806 10.0.9.74:50000 write.
2019/04/08 14:50:40.806 10.0.9.74:50000 write 6
TMN? 1
2019/04/08 14:50:40.806 wrote 6 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.806 tcpip_e712 wrote
TMN? 1
2019/04/08 14:50:40.806 asynOctetSyncIO wrote:
TMN? 1
2019/04/08 14:50:40.806 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.806 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.806 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a8979890 complete.
2019/04/08 14:50:40.806 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.806 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a8979890
2019/04/08 14:50:40.806 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.806 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.806 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.806 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.806 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.806 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.806 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.806 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.806 tcpip_e712 flush
2019/04/08 14:50:40.806 10.0.9.74:50000 flush
2019/04/08 14:50:40.806 10.0.9.74:50000 write.
2019/04/08 14:50:40.806 10.0.9.74:50000 write 1
\n
2019/04/08 14:50:40.806 wrote 1 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.806 tcpip_e712 wrote
\n
2019/04/08 14:50:40.806 asynOctetSyncIO wrote:
\n
2019/04/08 14:50:40.806 10.0.9.74:50000 read.
2019/04/08 14:50:40.807 10.0.9.74:50000 read 1
1
2019/04/08 14:50:40.807 tcpip_e712 read
1
2019/04/08 14:50:40.807 10.0.9.74:50000 read.
2019/04/08 14:50:40.807 10.0.9.74:50000 read 1
=
2019/04/08 14:50:40.807 tcpip_e712 read
=
2019/04/08 14:50:40.807 10.0.9.74:50000 read.
2019/04/08 14:50:40.807 10.0.9.74:50000 read 16
0.000000000e+00\n
2019/04/08 14:50:40.807 tcpip_e712 read
0.000000000e+00\n
2019/04/08 14:50:40.807 asynOctetSyncIO read:
1=0.000000000e+00
2019/04/08 14:50:40.807 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.807 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.807 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a8979890 complete.
2019/04/08 14:50:40.807 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.807 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a8979890
2019/04/08 14:50:40.807 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.808 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.808 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.808 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.808 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.808 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.808 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.808 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.808 10.0.9.74:50000 write.
2019/04/08 14:50:40.808 10.0.9.74:50000 write 6
TMX? 1
2019/04/08 14:50:40.808 wrote 6 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.808 tcpip_e712 wrote
TMX? 1
2019/04/08 14:50:40.808 asynOctetSyncIO wrote:
TMX? 1
2019/04/08 14:50:40.808 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.808 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.808 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a8979890 complete.
2019/04/08 14:50:40.808 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.808 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a8979890
2019/04/08 14:50:40.808 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.808 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.808 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.808 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.808 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.808 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.808 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.808 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.808 tcpip_e712 flush
2019/04/08 14:50:40.808 10.0.9.74:50000 flush
2019/04/08 14:50:40.808 10.0.9.74:50000 write.
2019/04/08 14:50:40.808 10.0.9.74:50000 write 1
\n
2019/04/08 14:50:40.808 wrote 1 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.808 tcpip_e712 wrote
\n
2019/04/08 14:50:40.808 asynOctetSyncIO wrote:
\n
2019/04/08 14:50:40.808 10.0.9.74:50000 read.
2019/04/08 14:50:40.808 10.0.9.74:50000 read 1
1
2019/04/08 14:50:40.808 tcpip_e712 read
1
2019/04/08 14:50:40.808 10.0.9.74:50000 read.
2019/04/08 14:50:40.809 10.0.9.74:50000 read 1
=
2019/04/08 14:50:40.809 tcpip_e712 read
=
2019/04/08 14:50:40.809 10.0.9.74:50000 read.
2019/04/08 14:50:40.809 10.0.9.74:50000 read 16
3.000000000e+02\n
2019/04/08 14:50:40.809 tcpip_e712 read
3.000000000e+02\n
2019/04/08 14:50:40.809 asynOctetSyncIO read:
1=3.000000000e+02
2019/04/08 14:50:40.809 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.809 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.809 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a8979890 complete.
PIasynAxis::PIasynAxis() 1: 2
2019/04/08 14:50:40.809 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.809 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a8979890
2019/04/08 14:50:40.809 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.809 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.809 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.809 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.809 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.809 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.809 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.809 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.809 10.0.9.74:50000 write.
2019/04/08 14:50:40.809 10.0.9.74:50000 write 7
SVO 2 1
2019/04/08 14:50:40.809 wrote 7 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.809 tcpip_e712 wrote
SVO 2 1
2019/04/08 14:50:40.809 asynOctetSyncIO wrote:
SVO 2 1
2019/04/08 14:50:40.809 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.809 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.809 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a8979890 complete.
2019/04/08 14:50:40.809 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.809 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a8979890
2019/04/08 14:50:40.809 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.809 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.809 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.809 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.809 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.809 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.809 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.809 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.809 10.0.9.74:50000 write.
2019/04/08 14:50:40.809 10.0.9.74:50000 write 1
\n
2019/04/08 14:50:40.809 wrote 1 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.809 tcpip_e712 wrote
\n
2019/04/08 14:50:40.809 asynOctetSyncIO wrote:
\n
2019/04/08 14:50:40.809 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.809 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.809 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a8979890 complete.
2019/04/08 14:50:40.809 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.809 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a8979890
2019/04/08 14:50:40.809 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.809 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.809 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.809 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.809 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.809 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.809 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.809 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.809 10.0.9.74:50000 write.
2019/04/08 14:50:40.809 10.0.9.74:50000 write 4
ERR?
2019/04/08 14:50:40.809 wrote 4 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.809 tcpip_e712 wrote
ERR?
2019/04/08 14:50:40.809 asynOctetSyncIO wrote:
ERR?
2019/04/08 14:50:40.809 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.809 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.809 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a8979890 complete.
2019/04/08 14:50:40.809 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.809 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a8979890
2019/04/08 14:50:40.809 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.809 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.809 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.809 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.809 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.809 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.809 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.809 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.809 tcpip_e712 flush
2019/04/08 14:50:40.809 10.0.9.74:50000 flush
2019/04/08 14:50:40.809 10.0.9.74:50000 write.
2019/04/08 14:50:40.809 10.0.9.74:50000 write 1
\n
2019/04/08 14:50:40.809 wrote 1 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.809 tcpip_e712 wrote
\n
2019/04/08 14:50:40.809 asynOctetSyncIO wrote:
\n
2019/04/08 14:50:40.809 10.0.9.74:50000 read.
2019/04/08 14:50:40.811 10.0.9.74:50000 read 2
0\n
2019/04/08 14:50:40.811 tcpip_e712 read
0\n
2019/04/08 14:50:40.811 asynOctetSyncIO read:
0
2019/04/08 14:50:40.811 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.811 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.811 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a8979890 complete.
2019/04/08 14:50:40.811 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.811 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a8979890
2019/04/08 14:50:40.811 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.811 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.811 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.811 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.811 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.811 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.811 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.811 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.811 10.0.9.74:50000 write.
2019/04/08 14:50:40.811 10.0.9.74:50000 write 6
VEL? 2
2019/04/08 14:50:40.811 wrote 6 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.811 tcpip_e712 wrote
VEL? 2
2019/04/08 14:50:40.811 asynOctetSyncIO wrote:
VEL? 2
2019/04/08 14:50:40.811 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.811 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.811 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a8979890 complete.
2019/04/08 14:50:40.811 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.811 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a8979890
2019/04/08 14:50:40.811 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.811 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.811 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.811 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.811 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.811 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.811 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.811 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.811 tcpip_e712 flush
2019/04/08 14:50:40.811 10.0.9.74:50000 flush
2019/04/08 14:50:40.811 10.0.9.74:50000 write.
2019/04/08 14:50:40.811 10.0.9.74:50000 write 1
\n
2019/04/08 14:50:40.811 wrote 1 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.811 tcpip_e712 wrote
\n
2019/04/08 14:50:40.811 asynOctetSyncIO wrote:
\n
2019/04/08 14:50:40.811 10.0.9.74:50000 read.
2019/04/08 14:50:40.812 10.0.9.74:50000 read 1
2
2019/04/08 14:50:40.812 tcpip_e712 read
2
2019/04/08 14:50:40.812 10.0.9.74:50000 read.
2019/04/08 14:50:40.812 10.0.9.74:50000 read 1
=
2019/04/08 14:50:40.812 tcpip_e712 read
=
2019/04/08 14:50:40.812 10.0.9.74:50000 read.
2019/04/08 14:50:40.812 10.0.9.74:50000 read 16
7.500000000e+03\n
2019/04/08 14:50:40.812 tcpip_e712 read
7.500000000e+03\n
2019/04/08 14:50:40.812 asynOctetSyncIO read:
2=7.500000000e+03
2019/04/08 14:50:40.812 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.812 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.812 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a8979890 complete.
2019/04/08 14:50:40.812 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.812 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a8979890
2019/04/08 14:50:40.812 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.812 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.812 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.812 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.812 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.812 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.812 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.812 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.812 10.0.9.74:50000 write.
2019/04/08 14:50:40.812 10.0.9.74:50000 write 6
POS? 2
2019/04/08 14:50:40.813 wrote 6 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.813 tcpip_e712 wrote
POS? 2
2019/04/08 14:50:40.813 asynOctetSyncIO wrote:
POS? 2
2019/04/08 14:50:40.813 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.813 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.813 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a8979890 complete.
2019/04/08 14:50:40.813 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.813 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a8979890
2019/04/08 14:50:40.813 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.813 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.813 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.813 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.813 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.813 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.813 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.813 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.813 tcpip_e712 flush
2019/04/08 14:50:40.813 10.0.9.74:50000 flush
2019/04/08 14:50:40.813 10.0.9.74:50000 write.
2019/04/08 14:50:40.813 10.0.9.74:50000 write 1
\n
2019/04/08 14:50:40.813 wrote 1 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.813 tcpip_e712 wrote
\n
2019/04/08 14:50:40.813 asynOctetSyncIO wrote:
\n
2019/04/08 14:50:40.813 10.0.9.74:50000 read.
2019/04/08 14:50:40.813 10.0.9.74:50000 read 1
2
2019/04/08 14:50:40.813 tcpip_e712 read
2
2019/04/08 14:50:40.813 10.0.9.74:50000 read.
2019/04/08 14:50:40.813 10.0.9.74:50000 read 1
=
2019/04/08 14:50:40.813 tcpip_e712 read
=
2019/04/08 14:50:40.813 10.0.9.74:50000 read.
2019/04/08 14:50:40.814 10.0.9.74:50000 read 16
1.563906860e+01\n
2019/04/08 14:50:40.814 tcpip_e712 read
1.563906860e+01\n
2019/04/08 14:50:40.814 asynOctetSyncIO read:
2=1.563906860e+01
2019/04/08 14:50:40.814 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.814 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.814 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a8979890 complete.
2019/04/08 14:50:40.814 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.814 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a8979890
2019/04/08 14:50:40.814 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.814 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.814 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.814 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.814 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.814 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.814 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.814 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.814 10.0.9.74:50000 write.
2019/04/08 14:50:40.814 10.0.9.74:50000 write 6
TMN? 2
2019/04/08 14:50:40.814 wrote 6 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.814 tcpip_e712 wrote
TMN? 2
2019/04/08 14:50:40.814 asynOctetSyncIO wrote:
TMN? 2
2019/04/08 14:50:40.814 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.814 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.814 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a8979890 complete.
2019/04/08 14:50:40.814 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.814 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a8979890
2019/04/08 14:50:40.814 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.814 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.814 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.814 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.814 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.814 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.814 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.814 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.814 tcpip_e712 flush
2019/04/08 14:50:40.814 10.0.9.74:50000 flush
2019/04/08 14:50:40.814 10.0.9.74:50000 write.
2019/04/08 14:50:40.814 10.0.9.74:50000 write 1
\n
2019/04/08 14:50:40.814 wrote 1 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.814 tcpip_e712 wrote
\n
2019/04/08 14:50:40.814 asynOctetSyncIO wrote:
\n
2019/04/08 14:50:40.814 10.0.9.74:50000 read.
2019/04/08 14:50:40.815 10.0.9.74:50000 read 1
2
2019/04/08 14:50:40.815 tcpip_e712 read
2
2019/04/08 14:50:40.815 10.0.9.74:50000 read.
2019/04/08 14:50:40.815 10.0.9.74:50000 read 1
=
2019/04/08 14:50:40.815 tcpip_e712 read
=
2019/04/08 14:50:40.815 10.0.9.74:50000 read.
2019/04/08 14:50:40.815 10.0.9.74:50000 read 16
0.000000000e+00\n
2019/04/08 14:50:40.815 tcpip_e712 read
0.000000000e+00\n
2019/04/08 14:50:40.815 asynOctetSyncIO read:
2=0.000000000e+00
2019/04/08 14:50:40.815 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.815 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.815 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a8979890 complete.
2019/04/08 14:50:40.815 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.815 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a8979890
2019/04/08 14:50:40.815 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.815 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.815 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.815 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.815 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.815 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.815 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.815 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.815 10.0.9.74:50000 write.
2019/04/08 14:50:40.815 10.0.9.74:50000 write 6
TMX? 2
2019/04/08 14:50:40.815 wrote 6 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.815 tcpip_e712 wrote
TMX? 2
2019/04/08 14:50:40.815 asynOctetSyncIO wrote:
TMX? 2
2019/04/08 14:50:40.815 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.815 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.815 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a8979890 complete.
2019/04/08 14:50:40.815 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.815 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a8979890
2019/04/08 14:50:40.815 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.815 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.815 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.815 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.815 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.815 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.815 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.815 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.815 tcpip_e712 flush
2019/04/08 14:50:40.815 10.0.9.74:50000 flush
2019/04/08 14:50:40.815 10.0.9.74:50000 write.
2019/04/08 14:50:40.815 10.0.9.74:50000 write 1
\n
2019/04/08 14:50:40.815 wrote 1 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.815 tcpip_e712 wrote
\n
2019/04/08 14:50:40.815 asynOctetSyncIO wrote:
\n
2019/04/08 14:50:40.815 10.0.9.74:50000 read.
2019/04/08 14:50:40.816 10.0.9.74:50000 read 1
2
2019/04/08 14:50:40.816 tcpip_e712 read
2
2019/04/08 14:50:40.816 10.0.9.74:50000 read.
2019/04/08 14:50:40.816 10.0.9.74:50000 read 1
=
2019/04/08 14:50:40.816 tcpip_e712 read
=
2019/04/08 14:50:40.816 10.0.9.74:50000 read.
2019/04/08 14:50:40.816 10.0.9.74:50000 read 16
3.000000000e+02\n
2019/04/08 14:50:40.816 tcpip_e712 read
3.000000000e+02\n
2019/04/08 14:50:40.816 asynOctetSyncIO read:
2=3.000000000e+02
2019/04/08 14:50:40.816 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.816 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.816 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a8979890 complete.
PIasynAxis::PIasynAxis() 2: 3
2019/04/08 14:50:40.817 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.817 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a8979890
2019/04/08 14:50:40.817 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.817 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.817 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.817 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.817 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.817 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.817 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.817 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.817 10.0.9.74:50000 write.
2019/04/08 14:50:40.817 10.0.9.74:50000 write 7
SVO 3 1
2019/04/08 14:50:40.817 wrote 7 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.817 tcpip_e712 wrote
SVO 3 1
2019/04/08 14:50:40.817 asynOctetSyncIO wrote:
SVO 3 1
2019/04/08 14:50:40.817 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.817 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.817 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a8979890 complete.
2019/04/08 14:50:40.817 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.817 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a8979890
2019/04/08 14:50:40.817 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.817 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.817 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.817 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.817 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.817 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.817 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.817 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.817 10.0.9.74:50000 write.
2019/04/08 14:50:40.817 10.0.9.74:50000 write 1
\n
2019/04/08 14:50:40.817 wrote 1 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.817 tcpip_e712 wrote
\n
2019/04/08 14:50:40.817 asynOctetSyncIO wrote:
\n
2019/04/08 14:50:40.817 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.817 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.817 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a8979890 complete.
2019/04/08 14:50:40.817 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.817 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a8979890
2019/04/08 14:50:40.817 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.817 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.817 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.817 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.817 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.817 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.817 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.817 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.817 10.0.9.74:50000 write.
2019/04/08 14:50:40.817 10.0.9.74:50000 write 4
ERR?
2019/04/08 14:50:40.817 wrote 4 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.817 tcpip_e712 wrote
ERR?
2019/04/08 14:50:40.817 asynOctetSyncIO wrote:
ERR?
2019/04/08 14:50:40.817 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.817 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.817 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a8979890 complete.
2019/04/08 14:50:40.817 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.817 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a8979890
2019/04/08 14:50:40.817 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.817 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.817 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.817 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.817 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.817 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.817 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.817 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.817 tcpip_e712 flush
2019/04/08 14:50:40.817 10.0.9.74:50000 flush
2019/04/08 14:50:40.817 10.0.9.74:50000 write.
2019/04/08 14:50:40.817 10.0.9.74:50000 write 1
\n
2019/04/08 14:50:40.817 wrote 1 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.817 tcpip_e712 wrote
\n
2019/04/08 14:50:40.817 asynOctetSyncIO wrote:
\n
2019/04/08 14:50:40.817 10.0.9.74:50000 read.
2019/04/08 14:50:40.819 10.0.9.74:50000 read 2
0\n
2019/04/08 14:50:40.819 tcpip_e712 read
0\n
2019/04/08 14:50:40.819 asynOctetSyncIO read:
0
2019/04/08 14:50:40.819 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.819 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.819 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a8979890 complete.
2019/04/08 14:50:40.819 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.819 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a8979890
2019/04/08 14:50:40.819 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.819 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.819 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.819 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.819 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.819 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.819 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.819 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.819 10.0.9.74:50000 write.
2019/04/08 14:50:40.819 10.0.9.74:50000 write 6
VEL? 3
2019/04/08 14:50:40.819 wrote 6 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.819 tcpip_e712 wrote
VEL? 3
2019/04/08 14:50:40.819 asynOctetSyncIO wrote:
VEL? 3
2019/04/08 14:50:40.819 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.819 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.819 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a8979890 complete.
2019/04/08 14:50:40.819 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.819 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a8979890
2019/04/08 14:50:40.819 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.819 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.819 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.819 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.819 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.819 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.819 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.819 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.819 tcpip_e712 flush
2019/04/08 14:50:40.819 10.0.9.74:50000 flush
2019/04/08 14:50:40.819 10.0.9.74:50000 write.
2019/04/08 14:50:40.819 10.0.9.74:50000 write 1
\n
2019/04/08 14:50:40.819 wrote 1 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.819 tcpip_e712 wrote
\n
2019/04/08 14:50:40.819 asynOctetSyncIO wrote:
\n
2019/04/08 14:50:40.819 10.0.9.74:50000 read.
2019/04/08 14:50:40.819 10.0.9.74:50000 read 1
3
2019/04/08 14:50:40.819 tcpip_e712 read
3
2019/04/08 14:50:40.819 10.0.9.74:50000 read.
2019/04/08 14:50:40.820 10.0.9.74:50000 read 1
=
2019/04/08 14:50:40.820 tcpip_e712 read
=
2019/04/08 14:50:40.820 10.0.9.74:50000 read.
2019/04/08 14:50:40.820 10.0.9.74:50000 read 16
2.000000000e+04\n
2019/04/08 14:50:40.820 tcpip_e712 read
2.000000000e+04\n
2019/04/08 14:50:40.820 asynOctetSyncIO read:
3=2.000000000e+04
2019/04/08 14:50:40.820 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.820 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.820 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a8979890 complete.
2019/04/08 14:50:40.820 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.820 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a8979890
2019/04/08 14:50:40.820 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.820 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.820 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.820 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.820 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.820 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.820 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.820 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.820 10.0.9.74:50000 write.
2019/04/08 14:50:40.820 10.0.9.74:50000 write 6
POS? 3
2019/04/08 14:50:40.820 wrote 6 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.820 tcpip_e712 wrote
POS? 3
2019/04/08 14:50:40.820 asynOctetSyncIO wrote:
POS? 3
2019/04/08 14:50:40.820 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.820 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.820 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a8979890 complete.
2019/04/08 14:50:40.820 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.820 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a8979890
2019/04/08 14:50:40.820 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.820 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.820 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.820 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.820 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.820 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.820 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.820 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.820 tcpip_e712 flush
2019/04/08 14:50:40.820 10.0.9.74:50000 flush
2019/04/08 14:50:40.820 10.0.9.74:50000 write.
2019/04/08 14:50:40.820 10.0.9.74:50000 write 1
\n
2019/04/08 14:50:40.820 wrote 1 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.820 tcpip_e712 wrote
\n
2019/04/08 14:50:40.820 asynOctetSyncIO wrote:
\n
2019/04/08 14:50:40.820 10.0.9.74:50000 read.
2019/04/08 14:50:40.821 10.0.9.74:50000 read 1
3
2019/04/08 14:50:40.821 tcpip_e712 read
3
2019/04/08 14:50:40.821 10.0.9.74:50000 read.
2019/04/08 14:50:40.821 10.0.9.74:50000 read 1
=
2019/04/08 14:50:40.821 tcpip_e712 read
=
2019/04/08 14:50:40.821 10.0.9.74:50000 read.
2019/04/08 14:50:40.821 10.0.9.74:50000 read 16
1.909243774e+01\n
2019/04/08 14:50:40.821 tcpip_e712 read
1.909243774e+01\n
2019/04/08 14:50:40.821 asynOctetSyncIO read:
3=1.909243774e+01
2019/04/08 14:50:40.821 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.821 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.821 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a8979890 complete.
2019/04/08 14:50:40.821 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.821 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a8979890
2019/04/08 14:50:40.821 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.821 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.821 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.821 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.821 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.821 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.821 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.821 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.821 10.0.9.74:50000 write.
2019/04/08 14:50:40.821 10.0.9.74:50000 write 6
TMN? 3
2019/04/08 14:50:40.822 wrote 6 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.822 tcpip_e712 wrote
TMN? 3
2019/04/08 14:50:40.822 asynOctetSyncIO wrote:
TMN? 3
2019/04/08 14:50:40.822 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.822 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.822 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a8979890 complete.
2019/04/08 14:50:40.822 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.822 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a8979890
2019/04/08 14:50:40.822 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.822 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.822 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.822 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.822 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.822 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.822 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.822 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.822 tcpip_e712 flush
2019/04/08 14:50:40.822 10.0.9.74:50000 flush
2019/04/08 14:50:40.822 10.0.9.74:50000 write.
2019/04/08 14:50:40.822 10.0.9.74:50000 write 1
\n
2019/04/08 14:50:40.822 wrote 1 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.822 tcpip_e712 wrote
\n
2019/04/08 14:50:40.822 asynOctetSyncIO wrote:
\n
2019/04/08 14:50:40.822 10.0.9.74:50000 read.
2019/04/08 14:50:40.822 10.0.9.74:50000 read 1
3
2019/04/08 14:50:40.822 tcpip_e712 read
3
2019/04/08 14:50:40.822 10.0.9.74:50000 read.
2019/04/08 14:50:40.823 10.0.9.74:50000 read 1
=
2019/04/08 14:50:40.823 tcpip_e712 read
=
2019/04/08 14:50:40.823 10.0.9.74:50000 read.
2019/04/08 14:50:40.823 10.0.9.74:50000 read 16
0.000000000e+00\n
2019/04/08 14:50:40.823 tcpip_e712 read
0.000000000e+00\n
2019/04/08 14:50:40.823 asynOctetSyncIO read:
3=0.000000000e+00
2019/04/08 14:50:40.823 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.823 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.823 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a8979890 complete.
2019/04/08 14:50:40.823 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.823 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a8979890
2019/04/08 14:50:40.823 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.823 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.823 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.823 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.823 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.823 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.823 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.823 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.823 10.0.9.74:50000 write.
2019/04/08 14:50:40.823 10.0.9.74:50000 write 6
TMX? 3
2019/04/08 14:50:40.823 wrote 6 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.823 tcpip_e712 wrote
TMX? 3
2019/04/08 14:50:40.823 asynOctetSyncIO wrote:
TMX? 3
2019/04/08 14:50:40.823 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.823 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.823 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a8979890 complete.
2019/04/08 14:50:40.823 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.823 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a8979890
2019/04/08 14:50:40.823 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.823 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.823 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.823 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.823 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.823 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.823 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.823 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.823 tcpip_e712 flush
2019/04/08 14:50:40.823 10.0.9.74:50000 flush
2019/04/08 14:50:40.823 10.0.9.74:50000 write.
2019/04/08 14:50:40.823 10.0.9.74:50000 write 1
\n
2019/04/08 14:50:40.823 wrote 1 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.823 tcpip_e712 wrote
\n
2019/04/08 14:50:40.823 asynOctetSyncIO wrote:
\n
2019/04/08 14:50:40.823 10.0.9.74:50000 read.
2019/04/08 14:50:40.825 10.0.9.74:50000 read 18
3=3.000000000e+02\n
2019/04/08 14:50:40.825 tcpip_e712 read
3=3.000000000e+02\n
2019/04/08 14:50:40.825 asynOctetSyncIO read:
3=3.000000000e+02
2019/04/08 14:50:40.825 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.825 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.825 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a8979890 complete.
dbLoadRecords("/usr/local/epics/motor-2019-04-02/db/PI_Support.db","P=PIE712:,R=m1:,PORT=PIasyn3,ADDR=0,TIMEOUT=1")
dbLoadRecords("/usr/local/epics/motor-2019-04-02/db/PI_Support.db","P=PIE712:,R=m2:,PORT=PIasyn3,ADDR=1,TIMEOUT=1")
2019/04/08 14:50:40.825 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.825 tcpip_e712 asynManager::queueLockPort created queueLockPortPvt=0x7efddc0008c0
dbLoadRecords("/usr/local/epics/motor-2019-04-02/db/PI_Support.db","P=PIE712:,R=m3:,PORT=PIasyn3,ADDR=2,TIMEOUT=1")
2019/04/08 14:50:40.825 tcpip_e712 asynManager::queueLockPort created queueLockPortPvt=0x7efddc0008c0, event=0x7efddc0008e0, mutex=0x55f6a897c5e0
2019/04/08 14:50:40.825 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a897c5e0
2019/04/08 14:50:40.825 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.825 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.825 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.825 dbLoadRecords("/usr/local/epics/motor-2019-04-02/db/PI_SupportCtrl.db","P=PIE712:,R=m1:,PORT=PIasyn3,ADDR=0,TIMEOUT=1")
tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.825 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.825 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.825 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.825 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.825 tcpip_e712 flush
2019/04/08 14:50:40.825 10.0.9.74:50000 flush
2019/04/08 14:50:40.825 10.0.9.74:50000 write.
2019/04/08 14:50:40.826 10.0.9.74:50000 write 1
\005
2019/04/08 14:50:40.826 wrote 1 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.826 tcpip_e712 wrote
\005
2019/04/08 14:50:40.826 asynOctetSyncIO wrote:
\005
2019/04/08 14:50:40.826 10.0.9.74:50000 read.
asynReport 10 â??PIasyn3â??
asynManager:report port â??PIasyn3â?? not found
#setIocLogDisable 0
#iocLogInit
iocInit
Starting iocInit
############################################################################
## EPICS R3.15.6
## EPICS Base built Mar  7 2019
############################################################################
2019/04/08 14:50:40.826 10.0.9.74:50000 read 2
0\n
2019/04/08 14:50:40.826 tcpip_e712 read
0\n
2019/04/08 14:50:40.826 asynOctetSyncIO read:
0
2019/04/08 14:50:40.826 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.826 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.826 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a897c5e0 complete.
2019/04/08 14:50:40.826 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.826 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a897c5e0
2019/04/08 14:50:40.826 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.826 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.826 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.826 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.826 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.826 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.826 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.826 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.826 10.0.9.74:50000 write.
2019/04/08 14:50:40.826 10.0.9.74:50000 write 6
POS? 1
2019/04/08 14:50:40.826 wrote 6 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.826 tcpip_e712 wrote
POS? 1
2019/04/08 14:50:40.826 asynOctetSyncIO wrote:
POS? 1
2019/04/08 14:50:40.826 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.826 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.826 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a897c5e0 complete.
2019/04/08 14:50:40.826 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.826 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a897c5e0
2019/04/08 14:50:40.826 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.826 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.826 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.826 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.826 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.826 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.826 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.826 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.826 tcpip_e712 flush
2019/04/08 14:50:40.826 10.0.9.74:50000 flush
2019/04/08 14:50:40.826 10.0.9.74:50000 write.
2019/04/08 14:50:40.826 10.0.9.74:50000 write 1
\n
2019/04/08 14:50:40.826 wrote 1 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.826 tcpip_e712 wrote
\n
2019/04/08 14:50:40.826 asynOctetSyncIO wrote:
\n
2019/04/08 14:50:40.826 10.0.9.74:50000 read.
2019/04/08 14:50:40.827 10.0.9.74:50000 read 1
1
2019/04/08 14:50:40.827 tcpip_e712 read
1
2019/04/08 14:50:40.827 10.0.9.74:50000 read.
2019/04/08 14:50:40.827 10.0.9.74:50000 read 1
=
2019/04/08 14:50:40.827 tcpip_e712 read
=
2019/04/08 14:50:40.827 10.0.9.74:50000 read.
2019/04/08 14:50:40.828 10.0.9.74:50000 read 16
1.754418945e+01\n
2019/04/08 14:50:40.828 tcpip_e712 read
1.754418945e+01\n
2019/04/08 14:50:40.828 asynOctetSyncIO read:
1=1.754418945e+01
2019/04/08 14:50:40.828 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.828 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.828 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a897c5e0 complete.
2019/04/08 14:50:40.828 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.828 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a897c5e0
2019/04/08 14:50:40.828 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.828 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.828 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.828 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.828 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.828 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.828 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.828 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.828 10.0.9.74:50000 write.
2019/04/08 14:50:40.828 10.0.9.74:50000 write 6
POS? 1
2019/04/08 14:50:40.828 wrote 6 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.828 tcpip_e712 wrote
POS? 1
2019/04/08 14:50:40.828 asynOctetSyncIO wrote:
POS? 1
2019/04/08 14:50:40.828 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.828 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.828 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a897c5e0 complete.
2019/04/08 14:50:40.828 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.828 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a897c5e0
2019/04/08 14:50:40.828 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.828 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.828 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.828 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.828 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.828 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.828 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.828 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.828 tcpip_e712 flush
2019/04/08 14:50:40.828 10.0.9.74:50000 flush
2019/04/08 14:50:40.828 10.0.9.74:50000 write.
2019/04/08 14:50:40.828 10.0.9.74:50000 write 1
\n
2019/04/08 14:50:40.828 wrote 1 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.828 tcpip_e712 wrote
\n
2019/04/08 14:50:40.828 asynOctetSyncIO wrote:
\n
2019/04/08 14:50:40.828 10.0.9.74:50000 read.
2019/04/08 14:50:40.829 10.0.9.74:50000 read 1
1
2019/04/08 14:50:40.829 tcpip_e712 read
1
2019/04/08 14:50:40.829 10.0.9.74:50000 read.
2019/04/08 14:50:40.829 10.0.9.74:50000 read 1
=
2019/04/08 14:50:40.829 tcpip_e712 read
=
2019/04/08 14:50:40.829 10.0.9.74:50000 read.
2019/04/08 14:50:40.829 10.0.9.74:50000 read 16
1.754437256e+01\n
2019/04/08 14:50:40.829 tcpip_e712 read
1.754437256e+01\n
2019/04/08 14:50:40.829 asynOctetSyncIO read:
1=1.754437256e+01
2019/04/08 14:50:40.829 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.829 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.829 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a897c5e0 complete.
2019/04/08 14:50:40.829 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.829 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a897c5e0
2019/04/08 14:50:40.829 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.829 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.829 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.829 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.829 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.829 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.829 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.829 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.829 tcpip_e712 flush
2019/04/08 14:50:40.829 10.0.9.74:50000 flush
2019/04/08 14:50:40.829 10.0.9.74:50000 write.
2019/04/08 14:50:40.829 10.0.9.74:50000 write 1
\005
2019/04/08 14:50:40.829 wrote 1 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.829 tcpip_e712 wrote
\005
2019/04/08 14:50:40.829 asynOctetSyncIO wrote:
\005
2019/04/08 14:50:40.829 10.0.9.74:50000 read.
2019/04/08 14:50:40.830 10.0.9.74:50000 read 2
0\n
2019/04/08 14:50:40.830 tcpip_e712 read
0\n
2019/04/08 14:50:40.830 asynOctetSyncIO read:
0
2019/04/08 14:50:40.830 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.830 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.830 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a897c5e0 complete.
2019/04/08 14:50:40.830 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.830 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a897c5e0
2019/04/08 14:50:40.830 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.830 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.830 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.830 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.830 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.830 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.830 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.830 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.830 10.0.9.74:50000 write.
2019/04/08 14:50:40.830 10.0.9.74:50000 write 6
POS? 2
2019/04/08 14:50:40.830 wrote 6 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.830 tcpip_e712 wrote
POS? 2
2019/04/08 14:50:40.830 asynOctetSyncIO wrote:
POS? 2
2019/04/08 14:50:40.830 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.830 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.830 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a897c5e0 complete.
2019/04/08 14:50:40.830 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.830 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a897c5e0
2019/04/08 14:50:40.830 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.830 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.830 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.830 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.830 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.830 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.830 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.830 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.830 tcpip_e712 flush
2019/04/08 14:50:40.830 10.0.9.74:50000 flush
2019/04/08 14:50:40.830 10.0.9.74:50000 write.
2019/04/08 14:50:40.830 10.0.9.74:50000 write 1
\n
2019/04/08 14:50:40.830 wrote 1 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.830 tcpip_e712 wrote
\n
2019/04/08 14:50:40.830 asynOctetSyncIO wrote:
\n
2019/04/08 14:50:40.830 10.0.9.74:50000 read.
2019/04/08 14:50:40.831 10.0.9.74:50000 read 1
2
2019/04/08 14:50:40.831 tcpip_e712 read
2
2019/04/08 14:50:40.831 10.0.9.74:50000 read.
2019/04/08 14:50:40.831 10.0.9.74:50000 read 1
=
2019/04/08 14:50:40.831 tcpip_e712 read
=
2019/04/08 14:50:40.831 10.0.9.74:50000 read.
2019/04/08 14:50:40.831 10.0.9.74:50000 read 16
1.563984680e+01\n
2019/04/08 14:50:40.831 tcpip_e712 read
1.563984680e+01\n
2019/04/08 14:50:40.831 asynOctetSyncIO read:
2=1.563984680e+01
2019/04/08 14:50:40.831 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.831 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.831 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a897c5e0 complete.
2019/04/08 14:50:40.831 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.831 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a897c5e0
2019/04/08 14:50:40.831 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.831 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.831 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.831 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.831 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.832 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.832 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.832 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.832 10.0.9.74:50000 write.
2019/04/08 14:50:40.832 10.0.9.74:50000 write 6
POS? 2
2019/04/08 14:50:40.832 wrote 6 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.832 tcpip_e712 wrote
POS? 2
2019/04/08 14:50:40.832 asynOctetSyncIO wrote:
POS? 2
2019/04/08 14:50:40.832 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.832 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.832 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a897c5e0 complete.
2019/04/08 14:50:40.832 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.832 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a897c5e0
2019/04/08 14:50:40.832 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.832 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.832 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.832 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.832 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.832 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.832 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.832 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.832 tcpip_e712 flush
2019/04/08 14:50:40.832 10.0.9.74:50000 flush
2019/04/08 14:50:40.832 10.0.9.74:50000 write.
2019/04/08 14:50:40.832 10.0.9.74:50000 write 1
\n
2019/04/08 14:50:40.832 wrote 1 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.832 tcpip_e712 wrote
\n
2019/04/08 14:50:40.832 asynOctetSyncIO wrote:
\n
2019/04/08 14:50:40.832 10.0.9.74:50000 read.
2019/04/08 14:50:40.832 10.0.9.74:50000 read 1
2
2019/04/08 14:50:40.832 tcpip_e712 read
2
2019/04/08 14:50:40.832 10.0.9.74:50000 read.
2019/04/08 14:50:40.833 10.0.9.74:50000 read 1
=
2019/04/08 14:50:40.833 tcpip_e712 read
=
2019/04/08 14:50:40.833 10.0.9.74:50000 read.
2019/04/08 14:50:40.833 10.0.9.74:50000 read 16
1.563836670e+01\n
2019/04/08 14:50:40.833 tcpip_e712 read
1.563836670e+01\n
2019/04/08 14:50:40.833 asynOctetSyncIO read:
2=1.563836670e+01
2019/04/08 14:50:40.833 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.833 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.833 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a897c5e0 complete.
2019/04/08 14:50:40.833 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.833 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a897c5e0
2019/04/08 14:50:40.833 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.833 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.833 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.833 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.833 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.833 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.833 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.833 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.833 tcpip_e712 flush
2019/04/08 14:50:40.833 10.0.9.74:50000 flush
2019/04/08 14:50:40.833 10.0.9.74:50000 write.
2019/04/08 14:50:40.833 10.0.9.74:50000 write 1
\005
2019/04/08 14:50:40.833 wrote 1 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.833 tcpip_e712 wrote
\005
2019/04/08 14:50:40.833 asynOctetSyncIO wrote:
\005
2019/04/08 14:50:40.833 10.0.9.74:50000 read.
2019/04/08 14:50:40.834 10.0.9.74:50000 read 2
0\n
2019/04/08 14:50:40.834 tcpip_e712 read
0\n
2019/04/08 14:50:40.834 asynOctetSyncIO read:
0
2019/04/08 14:50:40.834 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.834 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.834 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a897c5e0 complete.
2019/04/08 14:50:40.834 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.834 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a897c5e0
2019/04/08 14:50:40.834 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.834 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.834 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.834 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.834 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.834 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.834 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.834 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.834 10.0.9.74:50000 write.
2019/04/08 14:50:40.834 10.0.9.74:50000 write 6
POS? 3
2019/04/08 14:50:40.834 wrote 6 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.834 tcpip_e712 wrote
POS? 3
2019/04/08 14:50:40.834 asynOctetSyncIO wrote:
POS? 3
2019/04/08 14:50:40.834 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.834 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.834 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a897c5e0 complete.
2019/04/08 14:50:40.834 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.834 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a897c5e0
2019/04/08 14:50:40.834 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.834 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.834 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.834 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.834 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.834 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.834 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.834 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.834 tcpip_e712 flush
2019/04/08 14:50:40.834 10.0.9.74:50000 flush
2019/04/08 14:50:40.834 10.0.9.74:50000 write.
2019/04/08 14:50:40.834 10.0.9.74:50000 write 1
\n
2019/04/08 14:50:40.834 wrote 1 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.834 tcpip_e712 wrote
\n
2019/04/08 14:50:40.834 asynOctetSyncIO wrote:
\n
2019/04/08 14:50:40.834 10.0.9.74:50000 read.
2019/04/08 14:50:40.835 10.0.9.74:50000 read 1
3
2019/04/08 14:50:40.835 tcpip_e712 read
3
2019/04/08 14:50:40.835 10.0.9.74:50000 read.
2019/04/08 14:50:40.835 10.0.9.74:50000 read 1
=
2019/04/08 14:50:40.835 tcpip_e712 read
=
2019/04/08 14:50:40.835 10.0.9.74:50000 read.
2019/04/08 14:50:40.835 10.0.9.74:50000 read 16
1.909138489e+01\n
2019/04/08 14:50:40.835 tcpip_e712 read
1.909138489e+01\n
2019/04/08 14:50:40.835 asynOctetSyncIO read:
3=1.909138489e+01
2019/04/08 14:50:40.835 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.835 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.835 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a897c5e0 complete.
2019/04/08 14:50:40.835 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.835 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a897c5e0
2019/04/08 14:50:40.835 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.835 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.835 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.835 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.835 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.835 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.835 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.835 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.835 10.0.9.74:50000 write.
2019/04/08 14:50:40.835 10.0.9.74:50000 write 6
POS? 3
2019/04/08 14:50:40.835 wrote 6 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.835 tcpip_e712 wrote
POS? 3
2019/04/08 14:50:40.835 asynOctetSyncIO wrote:
POS? 3
2019/04/08 14:50:40.835 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.835 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.835 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a897c5e0 complete.
2019/04/08 14:50:40.836 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.836 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a897c5e0
2019/04/08 14:50:40.836 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.836 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.836 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.836 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.836 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.836 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.836 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.836 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.836 tcpip_e712 flush
2019/04/08 14:50:40.836 10.0.9.74:50000 flush
2019/04/08 14:50:40.836 10.0.9.74:50000 write.
2019/04/08 14:50:40.836 10.0.9.74:50000 write 1
\n
2019/04/08 14:50:40.836 wrote 1 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.836 tcpip_e712 wrote
\n
2019/04/08 14:50:40.836 asynOctetSyncIO wrote:
\n
2019/04/08 14:50:40.836 10.0.9.74:50000 read.
2019/04/08 14:50:40.836 10.0.9.74:50000 read 1
3
2019/04/08 14:50:40.836 tcpip_e712 read
3
2019/04/08 14:50:40.836 10.0.9.74:50000 read.
2019/04/08 14:50:40.837 10.0.9.74:50000 read 1
=
2019/04/08 14:50:40.837 tcpip_e712 read
=
2019/04/08 14:50:40.837 10.0.9.74:50000 read.
2019/04/08 14:50:40.837 10.0.9.74:50000 read 16
1.909342957e+01\n
2019/04/08 14:50:40.837 tcpip_e712 read
1.909342957e+01\n
2019/04/08 14:50:40.837 asynOctetSyncIO read:
3=1.909342957e+01
2019/04/08 14:50:40.837 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.837 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.837 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a897c5e0 complete.
2019/04/08 14:50:40.847 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.847 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a897c5e0
2019/04/08 14:50:40.847 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.847 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.847 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.847 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.847 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.847 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.847 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.847 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.847 tcpip_e712 flush
2019/04/08 14:50:40.847 10.0.9.74:50000 flush
2019/04/08 14:50:40.847 10.0.9.74:50000 write.
2019/04/08 14:50:40.847 10.0.9.74:50000 write 1
\005
2019/04/08 14:50:40.847 wrote 1 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.847 tcpip_e712 wrote
\005
2019/04/08 14:50:40.847 asynOctetSyncIO wrote:
\005
2019/04/08 14:50:40.847 10.0.9.74:50000 read.
2019/04/08 14:50:40.848 10.0.9.74:50000 read 2
0\n
2019/04/08 14:50:40.848 tcpip_e712 read
0\n
2019/04/08 14:50:40.848 asynOctetSyncIO read:
0
2019/04/08 14:50:40.848 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.848 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.848 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a897c5e0 complete.
2019/04/08 14:50:40.848 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.848 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a897c5e0
2019/04/08 14:50:40.848 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.848 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.848 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.848 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.848 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.848 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.848 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.848 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.848 10.0.9.74:50000 write.
2019/04/08 14:50:40.848 10.0.9.74:50000 write 6
POS? 1
2019/04/08 14:50:40.848 wrote 6 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.848 tcpip_e712 wrote
POS? 1
2019/04/08 14:50:40.848 asynOctetSyncIO wrote:
POS? 1
2019/04/08 14:50:40.848 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.848 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.848 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a897c5e0 complete.
2019/04/08 14:50:40.848 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.848 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a897c5e0
2019/04/08 14:50:40.848 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.848 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.848 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.848 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.848 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.848 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.848 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.848 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.848 tcpip_e712 flush
2019/04/08 14:50:40.848 10.0.9.74:50000 flush
2019/04/08 14:50:40.848 10.0.9.74:50000 write.
2019/04/08 14:50:40.848 10.0.9.74:50000 write 1
\n
2019/04/08 14:50:40.848 wrote 1 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.848 tcpip_e712 wrote
\n
2019/04/08 14:50:40.848 asynOctetSyncIO wrote:
\n
2019/04/08 14:50:40.848 10.0.9.74:50000 read.
2019/04/08 14:50:40.849 10.0.9.74:50000 read 1
1
2019/04/08 14:50:40.849 tcpip_e712 read
1
2019/04/08 14:50:40.849 10.0.9.74:50000 read.
2019/04/08 14:50:40.849 10.0.9.74:50000 read 1
=
2019/04/08 14:50:40.849 tcpip_e712 read
=
2019/04/08 14:50:40.849 10.0.9.74:50000 read.
2019/04/08 14:50:40.849 10.0.9.74:50000 read 16
1.754510498e+01\n
2019/04/08 14:50:40.849 tcpip_e712 read
1.754510498e+01\n
2019/04/08 14:50:40.849 asynOctetSyncIO read:
1=1.754510498e+01
2019/04/08 14:50:40.849 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.849 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.849 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a897c5e0 complete.
2019/04/08 14:50:40.849 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.849 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a897c5e0
2019/04/08 14:50:40.849 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.849 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.849 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.849 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.849 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.849 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.849 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.849 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.849 10.0.9.74:50000 write.
2019/04/08 14:50:40.849 10.0.9.74:50000 write 6
POS? 1
2019/04/08 14:50:40.849 wrote 6 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.849 tcpip_e712 wrote
POS? 1
2019/04/08 14:50:40.849 asynOctetSyncIO wrote:
POS? 1
2019/04/08 14:50:40.849 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.849 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.850 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a897c5e0 complete.
2019/04/08 14:50:40.850 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.850 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a897c5e0
2019/04/08 14:50:40.850 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.850 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.850 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.850 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.850 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.850 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.850 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.850 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.850 tcpip_e712 flush
2019/04/08 14:50:40.850 10.0.9.74:50000 flush
2019/04/08 14:50:40.850 10.0.9.74:50000 write.
2019/04/08 14:50:40.850 10.0.9.74:50000 write 1
\n
2019/04/08 14:50:40.850 wrote 1 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.850 tcpip_e712 wrote
\n
2019/04/08 14:50:40.850 asynOctetSyncIO wrote:
\n
2019/04/08 14:50:40.850 10.0.9.74:50000 read.
2019/04/08 14:50:40.850 10.0.9.74:50000 read 1
1
2019/04/08 14:50:40.850 tcpip_e712 read
1
2019/04/08 14:50:40.850 10.0.9.74:50000 read.
2019/04/08 14:50:40.851 10.0.9.74:50000 read 1
=
2019/04/08 14:50:40.851 tcpip_e712 read
=
2019/04/08 14:50:40.851 10.0.9.74:50000 read.
2019/04/08 14:50:40.851 10.0.9.74:50000 read 16
1.754646301e+01\n
2019/04/08 14:50:40.851 tcpip_e712 read
1.754646301e+01\n
2019/04/08 14:50:40.851 asynOctetSyncIO read:
1=1.754646301e+01
2019/04/08 14:50:40.851 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.851 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.851 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a897c5e0 complete.
2019/04/08 14:50:40.851 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.851 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a897c5e0
2019/04/08 14:50:40.851 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.851 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.851 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.851 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.851 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.851 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.851 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.851 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.851 tcpip_e712 flush
2019/04/08 14:50:40.851 10.0.9.74:50000 flush
2019/04/08 14:50:40.851 10.0.9.74:50000 write.
2019/04/08 14:50:40.851 10.0.9.74:50000 write 1
\005
2019/04/08 14:50:40.851 wrote 1 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.851 tcpip_e712 wrote
\005
2019/04/08 14:50:40.851 asynOctetSyncIO wrote:
\005
2019/04/08 14:50:40.851 10.0.9.74:50000 read.
2019/04/08 14:50:40.852 10.0.9.74:50000 read 2
0\n
2019/04/08 14:50:40.852 tcpip_e712 read
0\n
2019/04/08 14:50:40.852 asynOctetSyncIO read:
0
2019/04/08 14:50:40.852 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.852 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.852 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a897c5e0 complete.
2019/04/08 14:50:40.852 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.852 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a897c5e0
2019/04/08 14:50:40.852 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.852 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.852 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.852 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.852 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.852 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.852 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.852 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.852 10.0.9.74:50000 write.
2019/04/08 14:50:40.852 10.0.9.74:50000 write 6
POS? 2
2019/04/08 14:50:40.852 wrote 6 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.852 tcpip_e712 wrote
POS? 2
2019/04/08 14:50:40.852 asynOctetSyncIO wrote:
POS? 2
2019/04/08 14:50:40.852 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.852 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.852 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a897c5e0 complete.
2019/04/08 14:50:40.852 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.852 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a897c5e0
2019/04/08 14:50:40.852 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.852 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.852 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.852 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.852 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.852 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.852 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.852 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.852 tcpip_e712 flush
2019/04/08 14:50:40.852 10.0.9.74:50000 flush
2019/04/08 14:50:40.852 10.0.9.74:50000 write.
2019/04/08 14:50:40.852 10.0.9.74:50000 write 1
\n
2019/04/08 14:50:40.852 wrote 1 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.852 tcpip_e712 wrote
\n
2019/04/08 14:50:40.852 asynOctetSyncIO wrote:
\n
2019/04/08 14:50:40.852 10.0.9.74:50000 read.
2019/04/08 14:50:40.853 10.0.9.74:50000 read 1
2
2019/04/08 14:50:40.853 tcpip_e712 read
2
2019/04/08 14:50:40.853 10.0.9.74:50000 read.
2019/04/08 14:50:40.853 10.0.9.74:50000 read 1
=
2019/04/08 14:50:40.853 tcpip_e712 read
=
2019/04/08 14:50:40.853 10.0.9.74:50000 read.
2019/04/08 14:50:40.853 10.0.9.74:50000 read 16
1.563731384e+01\n
2019/04/08 14:50:40.853 tcpip_e712 read
1.563731384e+01\n
2019/04/08 14:50:40.853 asynOctetSyncIO read:
2=1.563731384e+01
2019/04/08 14:50:40.853 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.853 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.853 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a897c5e0 complete.
2019/04/08 14:50:40.853 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.853 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a897c5e0
2019/04/08 14:50:40.853 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.853 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.853 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.853 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.853 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.853 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.853 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.853 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.853 10.0.9.74:50000 write.
2019/04/08 14:50:40.853 10.0.9.74:50000 write 6
POS? 2
2019/04/08 14:50:40.853 wrote 6 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.853 tcpip_e712 wrote
POS? 2
2019/04/08 14:50:40.853 asynOctetSyncIO wrote:
POS? 2
2019/04/08 14:50:40.853 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.853 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.853 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a897c5e0 complete.
2019/04/08 14:50:40.853 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.854 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a897c5e0
2019/04/08 14:50:40.854 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.854 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.854 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.854 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.854 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.854 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.854 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.854 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.854 tcpip_e712 flush
2019/04/08 14:50:40.854 10.0.9.74:50000 flush
2019/04/08 14:50:40.854 10.0.9.74:50000 write.
2019/04/08 14:50:40.854 10.0.9.74:50000 write 1
\n
2019/04/08 14:50:40.854 wrote 1 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.854 tcpip_e712 wrote
\n
2019/04/08 14:50:40.854 asynOctetSyncIO wrote:
\n
2019/04/08 14:50:40.854 10.0.9.74:50000 read.
2019/04/08 14:50:40.854 10.0.9.74:50000 read 1
2
2019/04/08 14:50:40.854 tcpip_e712 read
2
2019/04/08 14:50:40.854 10.0.9.74:50000 read.
2019/04/08 14:50:40.855 10.0.9.74:50000 read 1
=
2019/04/08 14:50:40.855 tcpip_e712 read
=
2019/04/08 14:50:40.855 10.0.9.74:50000 read.
2019/04/08 14:50:40.855 10.0.9.74:50000 read 16
1.563809204e+01\n
2019/04/08 14:50:40.855 tcpip_e712 read
1.563809204e+01\n
2019/04/08 14:50:40.855 asynOctetSyncIO read:
2=1.563809204e+01
2019/04/08 14:50:40.855 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.855 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.855 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a897c5e0 complete.
2019/04/08 14:50:40.855 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.855 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a897c5e0
2019/04/08 14:50:40.855 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.855 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.855 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.855 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.855 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.855 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.855 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.855 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.855 tcpip_e712 flush
2019/04/08 14:50:40.855 10.0.9.74:50000 flush
2019/04/08 14:50:40.855 10.0.9.74:50000 write.
2019/04/08 14:50:40.855 10.0.9.74:50000 write 1
\005
2019/04/08 14:50:40.855 wrote 1 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.855 tcpip_e712 wrote
\005
2019/04/08 14:50:40.855 asynOctetSyncIO wrote:
\005
2019/04/08 14:50:40.855 10.0.9.74:50000 read.
2019/04/08 14:50:40.856 10.0.9.74:50000 read 2
0\n
2019/04/08 14:50:40.856 tcpip_e712 read
0\n
2019/04/08 14:50:40.856 asynOctetSyncIO read:
0
2019/04/08 14:50:40.856 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.856 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.856 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a897c5e0 complete.
2019/04/08 14:50:40.856 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.856 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a897c5e0
2019/04/08 14:50:40.856 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.856 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.856 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.856 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.856 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.856 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.856 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.856 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.856 10.0.9.74:50000 write.
2019/04/08 14:50:40.856 10.0.9.74:50000 write 6
POS? 3
2019/04/08 14:50:40.856 wrote 6 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.856 tcpip_e712 wrote
POS? 3
2019/04/08 14:50:40.856 asynOctetSyncIO wrote:
POS? 3
2019/04/08 14:50:40.856 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.856 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.856 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a897c5e0 complete.
2019/04/08 14:50:40.856 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.856 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a897c5e0
2019/04/08 14:50:40.856 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.856 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.856 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.856 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.856 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.856 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.856 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.856 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.856 tcpip_e712 flush
2019/04/08 14:50:40.856 10.0.9.74:50000 flush
2019/04/08 14:50:40.856 10.0.9.74:50000 write.
2019/04/08 14:50:40.856 10.0.9.74:50000 write 1
\n
2019/04/08 14:50:40.856 wrote 1 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.856 tcpip_e712 wrote
\n
2019/04/08 14:50:40.856 asynOctetSyncIO wrote:
\n
2019/04/08 14:50:40.856 10.0.9.74:50000 read.
2019/04/08 14:50:40.857 10.0.9.74:50000 read 1
3
2019/04/08 14:50:40.857 tcpip_e712 read
3
2019/04/08 14:50:40.857 10.0.9.74:50000 read.
2019/04/08 14:50:40.857 10.0.9.74:50000 read 1
=
2019/04/08 14:50:40.857 tcpip_e712 read
=
2019/04/08 14:50:40.857 10.0.9.74:50000 read.
2019/04/08 14:50:40.857 10.0.9.74:50000 read 16
1.909219360e+01\n
2019/04/08 14:50:40.857 tcpip_e712 read
1.909219360e+01\n
2019/04/08 14:50:40.857 asynOctetSyncIO read:
3=1.909219360e+01
2019/04/08 14:50:40.857 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.857 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.857 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a897c5e0 complete.
2019/04/08 14:50:40.857 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.857 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a897c5e0
2019/04/08 14:50:40.857 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.857 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.857 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.857 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.857 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.857 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.857 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.857 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.857 10.0.9.74:50000 write.
2019/04/08 14:50:40.857 10.0.9.74:50000 write 6
POS? 3
2019/04/08 14:50:40.857 wrote 6 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.857 tcpip_e712 wrote
POS? 3
2019/04/08 14:50:40.857 asynOctetSyncIO wrote:
POS? 3
2019/04/08 14:50:40.857 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.857 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.857 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a897c5e0 complete.
2019/04/08 14:50:40.857 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.857 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a897c5e0
2019/04/08 14:50:40.858 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.858 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.858 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.858 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.858 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.858 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.858 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.858 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.858 tcpip_e712 flush
2019/04/08 14:50:40.858 10.0.9.74:50000 flush
2019/04/08 14:50:40.858 10.0.9.74:50000 write.
2019/04/08 14:50:40.858 10.0.9.74:50000 write 1
\n
2019/04/08 14:50:40.858 wrote 1 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.858 tcpip_e712 wrote
\n
2019/04/08 14:50:40.858 asynOctetSyncIO wrote:
\n
2019/04/08 14:50:40.858 10.0.9.74:50000 read.
2019/04/08 14:50:40.858 10.0.9.74:50000 read 1
3
2019/04/08 14:50:40.858 tcpip_e712 read
3
2019/04/08 14:50:40.858 10.0.9.74:50000 read.
2019/04/08 14:50:40.858 10.0.9.74:50000 read 1
=
2019/04/08 14:50:40.858 tcpip_e712 read
=
2019/04/08 14:50:40.858 10.0.9.74:50000 read.
2019/04/08 14:50:40.859 10.0.9.74:50000 read 16
1.909133911e+01\n
2019/04/08 14:50:40.859 tcpip_e712 read
1.909133911e+01\n
2019/04/08 14:50:40.859 asynOctetSyncIO read:
3=1.909133911e+01
2019/04/08 14:50:40.859 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.859 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.859 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a897c5e0 complete.
2019/04/08 14:50:40.869 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.869 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a897c5e0
2019/04/08 14:50:40.869 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.869 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.869 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.869 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.869 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.869 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.869 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.869 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.869 tcpip_e712 flush
2019/04/08 14:50:40.869 10.0.9.74:50000 flush
2019/04/08 14:50:40.869 10.0.9.74:50000 write.
2019/04/08 14:50:40.869 10.0.9.74:50000 write 1
\005
2019/04/08 14:50:40.869 wrote 1 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.869 tcpip_e712 wrote
\005
2019/04/08 14:50:40.869 asynOctetSyncIO wrote:
\005
2019/04/08 14:50:40.869 10.0.9.74:50000 read.
2019/04/08 14:50:40.870 10.0.9.74:50000 read 2
0\n
2019/04/08 14:50:40.870 tcpip_e712 read
0\n
2019/04/08 14:50:40.870 asynOctetSyncIO read:
0
2019/04/08 14:50:40.870 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.870 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.870 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a897c5e0 complete.
2019/04/08 14:50:40.870 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.870 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a897c5e0
2019/04/08 14:50:40.870 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.870 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.870 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.870 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.870 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.870 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.870 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.870 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.870 10.0.9.74:50000 write.
2019/04/08 14:50:40.870 10.0.9.74:50000 write 6
POS? 1
2019/04/08 14:50:40.870 wrote 6 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.870 tcpip_e712 wrote
POS? 1
2019/04/08 14:50:40.870 asynOctetSyncIO wrote:
POS? 1
2019/04/08 14:50:40.870 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.870 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.870 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a897c5e0 complete.
2019/04/08 14:50:40.870 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.870 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a897c5e0
2019/04/08 14:50:40.870 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.870 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.870 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.870 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.870 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.870 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.870 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.870 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.870 tcpip_e712 flush
2019/04/08 14:50:40.870 10.0.9.74:50000 flush
2019/04/08 14:50:40.870 10.0.9.74:50000 write.
2019/04/08 14:50:40.870 10.0.9.74:50000 write 1
\n
2019/04/08 14:50:40.870 wrote 1 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.870 tcpip_e712 wrote
\n
2019/04/08 14:50:40.870 asynOctetSyncIO wrote:
\n
2019/04/08 14:50:40.870 10.0.9.74:50000 read.
2019/04/08 14:50:40.871 10.0.9.74:50000 read 1
1
2019/04/08 14:50:40.871 tcpip_e712 read
1
2019/04/08 14:50:40.871 10.0.9.74:50000 read.
2019/04/08 14:50:40.871 10.0.9.74:50000 read 1
=
2019/04/08 14:50:40.871 tcpip_e712 read
=
2019/04/08 14:50:40.871 10.0.9.74:50000 read.
2019/04/08 14:50:40.871 10.0.9.74:50000 read 16
1.754533386e+01\n
2019/04/08 14:50:40.871 tcpip_e712 read
1.754533386e+01\n
2019/04/08 14:50:40.871 asynOctetSyncIO read:
1=1.754533386e+01
2019/04/08 14:50:40.871 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.871 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.871 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a897c5e0 complete.
2019/04/08 14:50:40.871 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.871 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a897c5e0
2019/04/08 14:50:40.871 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.871 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.871 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.871 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.871 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.871 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.871 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.871 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.871 10.0.9.74:50000 write.
2019/04/08 14:50:40.871 10.0.9.74:50000 write 6
POS? 1
2019/04/08 14:50:40.871 wrote 6 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.871 tcpip_e712 wrote
POS? 1
2019/04/08 14:50:40.871 asynOctetSyncIO wrote:
POS? 1
2019/04/08 14:50:40.871 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.871 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.871 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a897c5e0 complete.
2019/04/08 14:50:40.871 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.871 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a897c5e0
2019/04/08 14:50:40.871 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.871 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.871 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.871 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.871 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.871 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.871 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.871 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.871 tcpip_e712 flush
2019/04/08 14:50:40.871 10.0.9.74:50000 flush
2019/04/08 14:50:40.871 10.0.9.74:50000 write.
2019/04/08 14:50:40.871 10.0.9.74:50000 write 1
\n
2019/04/08 14:50:40.871 wrote 1 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.871 tcpip_e712 wrote
\n
2019/04/08 14:50:40.871 asynOctetSyncIO wrote:
\n
2019/04/08 14:50:40.871 10.0.9.74:50000 read.
2019/04/08 14:50:40.872 10.0.9.74:50000 read 1
1
2019/04/08 14:50:40.872 tcpip_e712 read
1
2019/04/08 14:50:40.872 10.0.9.74:50000 read.
2019/04/08 14:50:40.872 10.0.9.74:50000 read 1
=
2019/04/08 14:50:40.872 tcpip_e712 read
=
2019/04/08 14:50:40.872 10.0.9.74:50000 read.
2019/04/08 14:50:40.873 10.0.9.74:50000 read 16
1.754687500e+01\n
2019/04/08 14:50:40.873 tcpip_e712 read
1.754687500e+01\n
2019/04/08 14:50:40.873 asynOctetSyncIO read:
1=1.754687500e+01
2019/04/08 14:50:40.873 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.873 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.873 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a897c5e0 complete.
2019/04/08 14:50:40.873 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.873 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a897c5e0
2019/04/08 14:50:40.873 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.873 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.873 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.873 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.873 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.873 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.873 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.873 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.873 tcpip_e712 flush
2019/04/08 14:50:40.873 10.0.9.74:50000 flush
2019/04/08 14:50:40.873 10.0.9.74:50000 write.
2019/04/08 14:50:40.873 10.0.9.74:50000 write 1
\005
2019/04/08 14:50:40.873 wrote 1 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.873 tcpip_e712 wrote
\005
2019/04/08 14:50:40.873 asynOctetSyncIO wrote:
\005
2019/04/08 14:50:40.873 10.0.9.74:50000 read.
2019/04/08 14:50:40.873 10.0.9.74:50000 read 2
0\n
2019/04/08 14:50:40.873 tcpip_e712 read
0\n
2019/04/08 14:50:40.873 asynOctetSyncIO read:
0
2019/04/08 14:50:40.873 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.873 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.873 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a897c5e0 complete.
2019/04/08 14:50:40.873 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.873 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a897c5e0
2019/04/08 14:50:40.873 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.873 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.873 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.873 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.873 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.873 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.873 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.874 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.874 10.0.9.74:50000 write.
2019/04/08 14:50:40.874 10.0.9.74:50000 write 6
POS? 2
2019/04/08 14:50:40.874 wrote 6 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.874 tcpip_e712 wrote
POS? 2
2019/04/08 14:50:40.874 asynOctetSyncIO wrote:
POS? 2
2019/04/08 14:50:40.874 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.874 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.874 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a897c5e0 complete.
2019/04/08 14:50:40.874 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.874 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a897c5e0
2019/04/08 14:50:40.874 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.874 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.874 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.874 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.874 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.874 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.874 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.874 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.874 tcpip_e712 flush
2019/04/08 14:50:40.874 10.0.9.74:50000 flush
2019/04/08 14:50:40.874 10.0.9.74:50000 write.
2019/04/08 14:50:40.874 10.0.9.74:50000 write 1
\n
2019/04/08 14:50:40.874 wrote 1 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.874 tcpip_e712 wrote
\n
2019/04/08 14:50:40.874 asynOctetSyncIO wrote:
\n
2019/04/08 14:50:40.874 10.0.9.74:50000 read.
2019/04/08 14:50:40.874 10.0.9.74:50000 read 1
2
2019/04/08 14:50:40.874 tcpip_e712 read
2
2019/04/08 14:50:40.874 10.0.9.74:50000 read.
2019/04/08 14:50:40.875 10.0.9.74:50000 read 1
=
2019/04/08 14:50:40.875 tcpip_e712 read
=
2019/04/08 14:50:40.875 10.0.9.74:50000 read.
2019/04/08 14:50:40.875 10.0.9.74:50000 read 16
1.563963318e+01\n
2019/04/08 14:50:40.875 tcpip_e712 read
1.563963318e+01\n
2019/04/08 14:50:40.875 asynOctetSyncIO read:
2=1.563963318e+01
2019/04/08 14:50:40.875 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.875 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.875 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a897c5e0 complete.
2019/04/08 14:50:40.875 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.875 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a897c5e0
2019/04/08 14:50:40.875 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.875 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.875 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.875 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.875 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.875 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.875 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.875 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.875 10.0.9.74:50000 write.
2019/04/08 14:50:40.875 10.0.9.74:50000 write 6
POS? 2
2019/04/08 14:50:40.875 wrote 6 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.875 tcpip_e712 wrote
POS? 2
2019/04/08 14:50:40.875 asynOctetSyncIO wrote:
POS? 2
2019/04/08 14:50:40.875 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.875 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.875 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a897c5e0 complete.
2019/04/08 14:50:40.875 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.875 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a897c5e0
2019/04/08 14:50:40.875 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.875 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.875 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.875 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.875 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.875 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.875 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.875 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.875 tcpip_e712 flush
2019/04/08 14:50:40.875 10.0.9.74:50000 flush
2019/04/08 14:50:40.875 10.0.9.74:50000 write.
2019/04/08 14:50:40.875 10.0.9.74:50000 write 1
\n
2019/04/08 14:50:40.875 wrote 1 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.875 tcpip_e712 wrote
\n
2019/04/08 14:50:40.875 asynOctetSyncIO wrote:
\n
2019/04/08 14:50:40.875 10.0.9.74:50000 read.
2019/04/08 14:50:40.876 10.0.9.74:50000 read 1
2
2019/04/08 14:50:40.876 tcpip_e712 read
2
2019/04/08 14:50:40.876 10.0.9.74:50000 read.
2019/04/08 14:50:40.876 10.0.9.74:50000 read 1
=
2019/04/08 14:50:40.876 tcpip_e712 read
=
2019/04/08 14:50:40.876 10.0.9.74:50000 read.
2019/04/08 14:50:40.876 10.0.9.74:50000 read 16
1.563987732e+01\n
2019/04/08 14:50:40.876 tcpip_e712 read
1.563987732e+01\n
2019/04/08 14:50:40.876 asynOctetSyncIO read:
2=1.563987732e+01
2019/04/08 14:50:40.876 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.876 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.876 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a897c5e0 complete.
2019/04/08 14:50:40.876 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.876 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a897c5e0
2019/04/08 14:50:40.876 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.876 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.877 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.877 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.877 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.877 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.877 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.877 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.877 tcpip_e712 flush
2019/04/08 14:50:40.877 10.0.9.74:50000 flush
2019/04/08 14:50:40.877 10.0.9.74:50000 write.
2019/04/08 14:50:40.877 10.0.9.74:50000 write 1
\005
2019/04/08 14:50:40.877 wrote 1 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.877 tcpip_e712 wrote
\005
2019/04/08 14:50:40.877 asynOctetSyncIO wrote:
\005
2019/04/08 14:50:40.877 10.0.9.74:50000 read.
2019/04/08 14:50:40.877 10.0.9.74:50000 read 2
0\n
2019/04/08 14:50:40.877 tcpip_e712 read
0\n
2019/04/08 14:50:40.877 asynOctetSyncIO read:
0
2019/04/08 14:50:40.877 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.877 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.877 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a897c5e0 complete.
2019/04/08 14:50:40.877 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.877 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a897c5e0
2019/04/08 14:50:40.877 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.877 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.877 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.877 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.877 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.877 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.877 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.877 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.877 10.0.9.74:50000 write.
2019/04/08 14:50:40.877 10.0.9.74:50000 write 6
POS? 3
2019/04/08 14:50:40.877 wrote 6 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.877 tcpip_e712 wrote
POS? 3
2019/04/08 14:50:40.877 asynOctetSyncIO wrote:
POS? 3
2019/04/08 14:50:40.877 tcpip_e712 queueUnlockPort
2019/04/08 14:50:40.877 tcpip_e712 asynManager::queueUnlockPort waiting for event
2019/04/08 14:50:40.877 tcpip_e712 queueUnlockPort unlock mutex 0x55f6a897c5e0 complete.
2019/04/08 14:50:40.877 tcpip_e712 asynManager::queueLockPort locking port
2019/04/08 14:50:40.877 tcpip_e712 asynManager::queueLockPort taking mutex 0x55f6a897c5e0
2019/04/08 14:50:40.877 tcpip_e712 asynManager::queueLockPort queueing request
2019/04/08 14:50:40.877 tcpip_e712 addr -1 queueRequest priority 0 not lockHolder
2019/04/08 14:50:40.877 tcpip_e712 schedule queueRequest timeout
2019/04/08 14:50:40.877 tcpip_e712 asynManager::queueLockPort waiting for event
2019/04/08 14:50:40.877 asynManager::portThread port=tcpip_e712 callback
2019/04/08 14:50:40.877 tcpip_e712 asynManager::queueLockPortCallback signaling begin event
2019/04/08 14:50:40.877 tcpip_e712 asynManager::queueLockPortCallback waiting for mutex from queueUnlockPort
2019/04/08 14:50:40.877 tcpip_e712 asynManager::queueLockPort got event from callback
2019/04/08 14:50:40.877 tcpip_e712 flush
2019/04/08 14:50:40.877 10.0.9.74:50000 flush
2019/04/08 14:50:40.877 10.0.9.74:50000 write.
2019/04/08 14:50:40.877 10.0.9.74:50000 write 1
\n
2019/04/08 14:50:40.877 wrote 1 to 10.0.9.74:50000, return asynSuccess.
2019/04/08 14:50:40.877 tcpip_e712 wrote
\n
2019/04/08 14:50:40.877 asynOctetSyncIO wrote:
\n
2019/04/08 14:50:40.877 10.0.9.74:50000 read.
2019/04/08 14:50:40.878 10.0.9.74:50000 read 1
3
2019/04/08 14:50:40.878 tcpip_e712 read
3
2019/04/08 14:50:40.878 10.0.9.74:50000 read.
2019/04/08 14:50:40.878 10.0.9.74:50000 read 1
=
2019/04/08 14:50:40.878 tcpip_e712 read
=
2019/04/08 14:50:40.878 10.0.9.74:50000 read.
2019/04/08 14:50:40.879 10.0.9.74:50000 read 16
1.909214783e+01\n
2019/04/08 14:50:40.879 tcpip_e712 read
1.909214783e+01\n
2019/04/08 14:50:40.879 asynOctetSyncIO read:
3=1.909214783e+01

Replies:
Re: asynMotor device support and the motor specific driver (asynMotorContorller) Mark Rivers via Tech-talk
References:
asynMotor device support and the motor specific driver (asynMotorContorller) Allan Serra Braga Bugyi via Tech-talk
Re: asynMotor device support and the motor specific driver (asynMotorContorller) Mark Rivers via Tech-talk
Re: asynMotor device support and the motor specific driver (asynMotorContorller) Allan Serra Braga Bugyi via Tech-talk
RE: asynMotor device support and the motor specific driver (asynMotorContorller) Mark Rivers via Tech-talk

Navigate by Date:
Prev: Re: PvData , PvAccess, Confusion with different hardware architectures Michael Davidsaver via Tech-talk
Next: Re: asynMotor device support and the motor specific driver (asynMotorContorller) Mark Rivers via Tech-talk
Index: 1994  1995  1996  1997  1998  1999  2000  2001  2002  2003  2004  2005  2006  2007  2008  2009  2010  2011  2012  2013  2014  2015  2016  2017  2018  <20192020  2021  2022  2023  2024 
Navigate by Thread:
Prev: RE: asynMotor device support and the motor specific driver (asynMotorContorller) Mark Rivers via Tech-talk
Next: Re: asynMotor device support and the motor specific driver (asynMotorContorller) Mark Rivers via Tech-talk
Index: 1994  1995  1996  1997  1998  1999  2000  2001  2002  2003  2004  2005  2006  2007  2008  2009  2010  2011  2012  2013  2014  2015  2016  2017  2018  <20192020  2021  2022  2023  2024 
ANJ, 08 Apr 2019 Valid HTML 4.01! · Home · News · About · Base · Modules · Extensions · Distributions · Download ·
· Search · EPICS V4 · IRMIS · Talk · Bugs · Documents · Links · Licensing ·