Tagged Questions
The weak tag has no wiki summary.
5
votes
2answers
323 views
Is there a boost::weak_intrusive_pointer?
For legacy reasons I need to use intrusive pointers, as I need the ability to convert raw pointers to smart pointers.
However I noticed there is no weak intrusive pointer for boost. I did find a talk ...
5
votes
4answers
7k views
How to make weak linking work with GCC?
There seem to be 3 ways of telling GCC to weak link a symbol:
__attribute__((weak_import))
__attribute__((weak))
#pragma weak symbol_name
None of these work for me:
#pragma weak asdf
extern void ...
3
votes
3answers
88 views
Is there a way to override a module's main function in the D programming language?
If you really need to, you can specify __attribute__((weak)) in C (see scriptedmain). This allows a program to double as API and executable, allowing code that imports the API to overwrite the main ...
3
votes
0answers
834 views
Weak symbol link on Mac OS X
Currently I encountered a weak link issue on Mac OS X 10.6.7 with Xcode 4.0.2.
robin@chameleon:/tmp/o$ gcc --version
i686-apple-darwin10-gcc-4.2.1 (GCC) 4.2.1 (Apple Inc. build 5666) (dot 3)
As the ...
3
votes
2answers
149 views
Python - how to check if weak reference is still available
I am passing some weakrefs from Python into C++ class, but C++ destructors are actively trying to access the ref when the real object is already dead, obviously it crashes...
Is there any Python ...
2
votes
2answers
411 views
Cross-Store weak relationship with Fetched Properties?
I would like to separate my reference data from my user data in my Core Data model to simplify future updates of my app (and because, I plan to store the database on the cloud and there is no need to ...
2
votes
3answers
164 views
JAVA - When gets a Class-Object garbage-collected?
I was wondering if somebody could tell me when a Java Class-Objects gets garbage collected.
My use-case is a cache (Map<Class<?>, Class<?>[]>) which holds the class-hierarchy of ...
2
votes
1answer
203 views
Weak reference not getting garbage collected?
I was studying about Weak references. And I understood that all weak references WILL be garbage collected before OutOfMemoryError occurs. I had a simple test something like this (I know catching OOME ...
1
vote
4answers
367 views
boost::shared_ptr cycle break with weak_ptr
I am currently in a situation like:
struct A
{
shared_ptr< B > b;
}
struct B
{
shared_ptr< A > a;
}
shared_ptr< A > a(new A()); shared_ptr< B > b(new B();
a->b(b); b->a(a);
I know this ...
0
votes
1answer
417 views
__week and autorelease pool in ARC in Xcode 4.2
My project use ARC. I tested with the code below:
NSString __weak *string;
@autoreleasepool {
string = [NSString stringWithString:@"AAA"];
}
NSLog(@"string: %@", string);
I think it ...
0
votes
0answers
41 views
TDD: weak tests [closed]
My tests aren't providing a good design. So, I have some questions about TDD, weak tests and good design:
Are my tests weak?
How do you find weak tests?
Can you describe the behavior of a weak test?
...
0
votes
1answer
322 views
Java HttpURLConnection connect using Weak Ciphers
I am working on a vulnerability scanner in Java to check for websites that allow connections using weak cipher suites. So I would, for example, try to connect using 56 bits ...
0
votes
0answers
35 views
IPhone 3.0 specific code on 2.2.1
I'm writing games onto IPhone platform and want to leverage the "Play ITunes music while running your app" feature. This is something introduced in OS 3.0 but I want to target OS 2.2.1 with ...
0
votes
2answers
2k views
How can I disable weak Ciphers for Tomcat 5.5.27
Please let me know how can I disable weak Ciphers for Tomcat 5.5.27