In VB.NET, the Shared keyword is roughly equivalent to the static keyword used by many other languages.
0
votes
0answers
2 views
Azure - How my website is hosted in the cloud
As you know traditional web hosting means that several hosted websites on one machine share the CPU, memory, disk space, etc. In comparison, websites created in the cloud i.e. through using Azure are ...
0
votes
0answers
22 views
object in shared memory: getting bogus data
I am trying to use a buffer class instantiated in shared memory. There is one sole writer process that writes to that object in shared memory, and one sole reader (so no need to use synchronization).
...
0
votes
1answer
25 views
Using Shared Preferences crashes my app
I've never worked with SP before so I'm probably doing something really wrong, but I gave it my best shot. I did alot of research and this is what I came up with, but when I run my app it simply ...
0
votes
0answers
17 views
Is it possible to execute/run cucumber test scripts from a network drive?
I'm needing to store cucumber test scripts in a shared network drive in order for teams in other timezones to be able to run these scripts from a shared network drive rather than their local ...
0
votes
2answers
12 views
Send bulk email shared hosting - asp.net webform
What is the best strategy to send bulk email on shared hosting.
What actually I need is, whenever new project is posted, I have to send email to all contractor (approximately 100 contractor)
1
vote
1answer
24 views
Link File to two locations in mercurial
I'm new to Mercurial and am trying to figure out how to "Link" a file between two locations. By this I mean if I have a file in one folder in the repository and then check that file in it will show ...
-1
votes
0answers
11 views
PC shares memory with external microcontroller [closed]
I'm looking for a PC hardware interface that matches these needs-
The PC will constantly be busy performing calculations.
Each time there is a calculation result (every ~1ms) I want it to share it ...
1
vote
0answers
17 views
QT shared opengl context
I want multiple QGLWidgets to share a single context, I am not able to get this to work after creating a QGLWidget, binding a texture using bindTexture() and create a second QGLWidget with the same ...
2
votes
1answer
42 views
Perl thread shared data
In my script there are n worker threads (0,1..n-1) and each work on the Nth item of the following arrays. Input array is used to provide input to thread and output array accepts the output from the ...
1
vote
0answers
7 views
How to calculate Index of extern shared array in Kernel function for 2D grid ?
I m trying to calculate histogram for 65536 range and hence i used extern shared array of size 65536 but confused to calculate its index....
Program is as follows
#include<stdio.h>
...
0
votes
1answer
43 views
Use of Atomic Shared Structures in D
How do I make a word-sized shared variable atomic in D?
I'm currently looking at core.atomic but I don't see any wrapper template named something like atomic. Isn't the interface designed in the same ...
0
votes
0answers
10 views
How do I fetch facebook events user has shared?
I'm trying to write a java app for Android which shows the fb's events the logged in user has shared (so he's not necessarely an event member).
If you know how to write it in php or js instead of ...
-4
votes
0answers
39 views
How to create two processes in c++ [closed]
How to create two processes A and B that use shared memory. A and B both write 50 integers in the shared memory?
0
votes
0answers
40 views
how to read a file on another server using ASP
I need to read a file on another server/ domain that I own; the file is open to all (if I enter the path in a browser it downloads the file)
filespec = ...
0
votes
1answer
51 views
Parent is executing before child process, how to force opposite through semaphores?
I am having trouble using shared memory, semaphores and forks in Unix C. My semaphores are not posix.
I create a pointer to shared memory 2*sizeof(float).
I initialize the value of my semaphore to 2 ...