Questions tagged [ace]

The ADAPTIVE Communication Environment (ACE), a C++ network programming toolkit. For the ACE database available since MS Access 2007, use an ms-access tag and the ms-jet-ace tag. For the ACE editor, use the [ace-editor] tag.

The ADAPTIVE Communication Environment (ACE) is a freely available, open-source object-oriented (OO) framework that implements many core patterns for concurrent communication software.

For the ACE database available since MS Access 2007, use the tag and the tag.

For the ACE editor use the tag.

206 questions
0
votes
1 answer

variable "ACE_Atomic_Op AcsHcs::Cache::cnt" has initializer but incomplete type

I am porting my windows code to linux. when i am using ACE_Atomic_Op api, compiler is throwing some error as shown below variable "ACE_Atomic_Op AcsHcs::Cache::cnt" has initializer but incomplete type" my code is…
user2413497
  • 211
  • 2
  • 3
  • 7
0
votes
0 answers

Hadoop vs DDS vs ACE

I am writing a report about distributed systems libraries for Java. But I can't see the difference between them. What is the difference between ACE vs Hadoop vs DDS? Can the three of them be used to develop a distributed application like a simple…
0
votes
1 answer

Accepting a connection with ACE_SOCK_Acceptor

I just started to learn ACE. I tried some of their simple examples and ran into a problem. This is my code: int _tmain(int argc, _TCHAR* argv[]) { ACE_INET_Addr server_addr; ACE_SOCK_Acceptor acceptor; ACE_SOCK_Stream stream; …
l3utterfly
  • 2,106
  • 4
  • 32
  • 58
0
votes
2 answers

warning: deprecated conversion from string constant to ‘ACE_TCHAR*’

I'm attempting to write unit tests in which we call the constructor to a generic class in the form: void testConstructor() { int argc = 2; ACE_TCHAR* argv[] = {"Input1", "Input2"}; MyClass *myClass = new MyClass(argc, argv); …
Tyler Jandreau
  • 4,245
  • 1
  • 22
  • 47
0
votes
1 answer

Replacing ACE with BOOST

I am new to BOOST We are planning to move from ACE to BOOST. We are not using complete ACE but just part of the ACE library and some are mentioned below ACE_THREAD ACE_OS ACE_Condition ACE_Timer ACE_Hash ACE_Semaphore ACE_Time_Value Is this or…
Avinash
  • 12,851
  • 32
  • 116
  • 186
0
votes
0 answers

read() call always returning 0 as the number of bytes read

I have this strange situation where the read(2) system call is always returning number of bytes read as 0. I know that this happens when the EOF is reached or the bytes to be read is specifed as 0. I am quite sure that none of the above are true in…
samairtimer
  • 826
  • 2
  • 12
  • 28
0
votes
1 answer

TAO 1.6a - How to make .a libraries?

I built TAO 1.6a downloaded from OCI in AIX 5.3. I was built successfully. However, I could only see .so files in $ACE_ROOT/lib. How to build it to get .a files? I have built 1.5a version and it gave me .a files. Is there any make flag? Please give…
Lwin Htoo Ko
  • 2,326
  • 4
  • 26
  • 38
0
votes
1 answer

Corba Naming_Service creates so many UDP connections

The Corba Naming_Service creates so many UDP connections and they are still remained even when the clients are disconnected. It goes up to 60K connections. AIX 5.3, TAO Version 1.5a_p22 and ACE Version 5.5a_p22 Below is the losf: Naming_Se 692382…
Lwin Htoo Ko
  • 2,326
  • 4
  • 26
  • 38
0
votes
1 answer

ACE_TRACE macro not working

I am following the book ACE Programmer's Guide, The: Practical Design Patterns for Network and Systems Programming By Stephen D. Huston, James CE Johnson, Umar Syyid. In this book in the very beginning there is a listing: #include…
0
votes
1 answer

Is ACE working on windows 7?

I'm looking for an OS abstraction library to use for my next project and I would like to know if ACE (Adaptive Communication Environment) can be used on a windows 7 environment. I've checked the ACE site (www.cs.wustl.edu/~schmidt/ACE.html) but the…
Fericelli
  • 320
  • 3
  • 9
0
votes
3 answers

thread didnt awake from sleep

I have a multi-threaded application but sometimes one thread that is suppose to wake up after 10 seconds and do some work is not getting woken up from sleep or is starving. It only happens sporadically. //ACE task svc method int svc (void) { …
Medicine
  • 1,923
  • 2
  • 23
  • 33
-1
votes
1 answer

How can I resolve C2733 Linking Error in Visual Studio

I've been trying to compile the Adaptive Communications Environment (ACE) project in MS Visual Studio 17 2022, but have been getting a slew of related linking errors. Below is an example: 1>C:\Program Files\Microsoft Visual…
Steve D.
  • 17
  • 2
-1
votes
1 answer

CORBA::ORB_init exception

I am adding ACE / TAO as a component to a large project which is written in C and C++. I received an .IOR file from the server, and I use the .IOR file when calling CORBA::ORB_init(argc, argv) I constructed my own argc and argv as followed int argc…
Lex L
  • 315
  • 1
  • 3
  • 17
-1
votes
2 answers

Socket Programming with ACE c++

I am new to the ACE framework.. and i'm looking to explore the socket programming using ACE. I found the doxygen documentation - http://www.dre.vanderbilt.edu/Doxygen/5.7.6/html/ace/a00614.html#aced00dccf394509a056ce4bccaf40b24 and it is no doubt…
J.DOE
  • 291
  • 2
  • 7
-1
votes
1 answer

libACE related clang build error `too few arguments provided to function-like macro invocation`

``` dep/acelite/ace/Reactor_Impl.h:83:63: error: too few arguments provided to function-like macro invocation virtual int dispatch_notify (ACE_Notification_Buffer &buffer) = 0; …
ryancheung
  • 2,999
  • 3
  • 24
  • 25
1 2 3
13
14