0
votes
2answers
45 views
Atomic bitfield operations on 80x86?
Does 80x86 have instructions for atomically testing and setting individual bits of a word?
0
votes
5answers
61 views
what is operation overloading? [closed]
Assuming I have a function that compares to of my objects: obj1, and obj2. This function returns 0 if obj1 and obj2 are equal then it is called operation overloading
0
votes
1answer
16 views
Mapping a WCF request message to the underlying operation
I need to know what operation is being invoked by examining a request Message object in an IDispatchMessageInspector.
What is the best way to do this?
1
vote
6answers
193 views
How do I convert a 2X2 matrix to 4X4 matrix in MATLAB?
I need some help in converting a 2X2 matrix to a 4X4 matrix in the following manner:
A = [2 6;
8 4]
should become:
B = [2 2 6 6;
2 2 6 6;
8 8 4 4;
8 8 4 4]
…
0
votes
2answers
17 views
how to display data comming from pipe on GUI form in C #
I have made a small server and client application connected via named pipe. I am able to communicate between them in console application. Now i want that data to be displayed in te …
0
votes
1answer
76 views
How can I get and put a value into a certain column and row?
I am having difficulties doing this program. It's transportation method using intuitive approach. you will first create two inputs that will describe how many rows and columns will …
1
vote
1answer
60 views
WCF Operation Logging
Hi,
I'd like to log the performance of our WCF operations, in particular if an operation takes longer to execute than a given threshold it creates a warning in a log.
We have sta …
0
votes
0answers
107 views
microsoft file copy operation [closed]
Does anyone have any idea why operations like file copy is not able to figure out how much time is left for the operation to complete? (Microsoft O.S.)
I still can't understand wh …
7
votes
3answers
1k views
How to correctly use .NET2.0 serial port .BaseStream for async operation
I am attempting to use the .BaseStream property of the .NET2.0 SerialPort to do asynchronous reads and writes (BeginWrite/EndWrite, BeginRead/EndRead).
I am having some success in …
0
votes
1answer
87 views
Difference between operations & threads in Cocoa
Hello everybody,
I am learning Objective-C, I will be developing a video processing application.
I am reading the developer's guide on apple and I ran into Operation objects. I …
0
votes
1answer
73 views
Consuming a method not mentioned in OperationContract
I have a WCF services. Which has two methods, say Get and Save. I want to expose only the Get method to the third party who will be consuming the service while my application shoul …
0
votes
2answers
1k views
Link error when compiling gcc atomic operation in 32-bit mode
I have the following program:
~/test> cat test.cc
int main()
{
int i = 3;
int j = __sync_add_and_fetch(&i, 1);
return 0;
}
I'm compiling this program using GCC 4.2. …
