Tagged Questions
For issues relating to utilizing the c runtime library.
14
votes
20answers
2k views
How to make a C++ EXE larger (artificially)
I want to make a dummy Win32 EXE file that is much larger than it should be. So by default a boiler plate Win32 EXE file is 80 KB. I want a 5 MB one for testing some other utilities.
The first idea ...
10
votes
2answers
2k views
crt0.o and crt1.o — What's the difference?
recently I've been trying to debug some low level work and I could not find the crt0.S for the compiler(avr-gcc) but I did find a crt1.S (and the same with the corresponding .o files)
What is the ...
10
votes
4answers
5k views
Windows malloc replacement (e.g., tcmalloc) and dynamic crt linking
A C++ program that uses several DLLs and QT should be equipped with a malloc replacement (like tcmalloc) for performance problems that can be verified to be caused by Windows malloc. With linux, there ...
9
votes
3answers
4k views
How can I write a Windows application without using WinMain?
Windows GUI applications written in C/C++ have 'WinMain' as an entry point (rather than 'main'). My understanding of this is that the compiler generates a 'main' function to be called by the C ...
7
votes
2answers
740 views
Why does renaming reg.exe on Windows Server 2008 x64 causes it to fail to run?
I've got a neat question here.
There's a utility called reg.exe thats been shipped with Windows for quite some time. Its very handy to import .reg files from scripts, modify values from scripts, etc, ...
7
votes
1answer
552 views
What functions does _WinMainCRTStartup perform?
This is part of a series of at least two closely related, but distinct questions. I hope I'm doing the right thing by asking them separately.
I'm trying to get my Visual C++ 2008 app to work without ...
7
votes
6answers
6k views
Should I compile with /MD or /MT?
In Visual Studio, there's the compile flags /MD and /MT which let you choose which kind of C runtime library you want.
I understand the difference in implementation, but I'm still not sure which one ...
7
votes
6answers
2k views
How to execute some code before entering the main() routine in VC?
I am reading Microsoft's CRT source code, and I can come up with the following code, where the function __initstdio1 will be executed before main() routine.
The question is, how to execute some code ...
6
votes
3answers
654 views
Correct way to distribute VC++ runtime files
I have an MFC application which I am trying to package for deployment. It seems to depend on the files 'msvcr90.dll', 'msvcp90.dll' and 'mfc90.dll'. What is the correct way to distribute these files?
...
6
votes
6answers
2k views
Does a memory leak at unload of a DLL cause a leak in the host process?
Consider this case:
dll = LoadDLL()
dll->do()
...
void do() {
char *a = malloc(1024);
}
...
UnloadDLL(dll);
At this point, will the 1k allocated in the call to malloc() be available to the ...
5
votes
4answers
4k views
Should I link to the Visual Studio C runtime statically or dynamically?
I have read arguments on both sides about whether one should link to the C runtime library statically or dynamically in Visual Studio projects, and I'm still not entirely sure what to think.
My ...
4
votes
3answers
428 views
Visual C++: possible to limit heap size?
I have a problem with an application I'm debugging. Steady state memory usage is a few hundred megabytes. Occasionally (after several hours) it gets into a state where its memory usage soars to many ...
4
votes
9answers
273 views
Fastest way to get the null char in a copied string in C
I need to get the pointer to the terminating null char of a string.
Currently I'm using this simple way: MyString + strlen(MyString) which is probably quite good out of context.
However I'm ...
4
votes
3answers
705 views
Statically linking against library built with different version of C Runtime Library, ok or bad?
Consider this scenario:
An application links to 3rd party library A.
A is built using MSVC 2008 and is statically linking (ie. built with /MT) to the C Runtime Library v9.0.
The application is built ...
3
votes
2answers
82 views
Detecting whether the CRT initialization was done in an injected process
I'm working on an application that injects a dll when a process starts (Suspend --> Inject --> Resume)
The very first call in DllMain with DLL_PROCESS_ATTACH (in the dll I injected) is a call to ...
3
votes
2answers
236 views
CRT not initialized
I'm trying to compile one project with MSVC 2010, compilation is ok, but when I try to run the app, it gives me CRT not initialized error. It is a console application, so I tried to specify ...
3
votes
2answers
173 views
Verifying CRT used in library (.lib)
How do I check what runtime library a static library (.lib) in Windows has linked to?
I'm compiling my project with /MDd and I presume a library I'm linking to is using /MTd Multi-threaded Debug
...
3
votes
3answers
1k views
How do I get the file HANDLE from the fopen FILE structure?
The fopen function returns a pointer to a FILE structure, which should be considered an opaque value, without dealing with its content or meaning.
On Windows, the C runtime is a wrapper of the ...
3
votes
4answers
1k views
C++ - Memory leak testing with _CrtDumpMemoryLeaks() - Does not output line numbers
I'm working on a game with SDL in Visual Studio 2010. I came across the _CrtDumpMemoryLeaks() macro and thought I'd give it a go. Invoking _CrtDumpMemoryLeaks() does print memory leaks to the output ...
3
votes
2answers
173 views
What is the reason of _tcs prefix for common string functions in Visual C?
Visual C++ CRT has several _t prefixed functions for both unicode and Ansi compatibility in the same source. So strcmp becomes _tcscmp, which I could never remember easily. So what is the hungarian ...
2
votes
0answers
107 views
malloc returns NULL and sets errno to ENOMEM, but there is plenty of heap space available?
I have a situation in which malloc() returns NULL and sets errno to ENOMEM. But the CRT heap (which is growable) has plenty of memory to work with. At the time of malloc, my process memory is about ...
2
votes
2answers
338 views
C++ Statically linked shared library
I have a shared library used by a another application beyond my control which requires *.so objects. My library makes use of sqlite3 which needs to be statically linked with it (I absolutely need a ...
2
votes
1answer
170 views
C# Extract public key from certification
Is there a way to extract public key from certification using C#? I have a certification file with .crt extension.
2
votes
4answers
149 views
Passing of variable arguments in C
Does anybody know how variable arguments are passed in classic C? I did some debugging today and most regular arguments are passed via stack. However it seems that this does not apply for variable ...
2
votes
2answers
170 views
Consistency of two C FILE* streams on a single file
I need to implement a simple "spill to disk" layer for large volume of data coming off a network socket. I was hoping to have two C FILE* streams, one used by a background thread writing to the file, ...
2
votes
1answer
44 views
Structured Exceptions (SE) from standard library calls
I've got code that calls ::fgetpos, which results in a kernel exception that can't be caught (I have option /ehs in my VS 2008 project). But I can't help think that standard library routines should ...
2
votes
1answer
302 views
_CrtSetAllocHook never shows filename/line number
I am implementing a memory tracker in my application so that further down the line, should I get any memory leaks I can switch this little guy on to find it.
All is great except that I am never ...
2
votes
2answers
470 views
Why does .NET 4.0 give a “CRT not initialized” error when loading an unmanaged DLL?
I have a DLL supplied by a 3rd party along with an accompanying .NET 2.0 assembly that wraps it. If I create a .NET 3.5 project with VS2008 I am able to call into the DLL via the wrapper assembly and ...
2
votes
3answers
992 views
fscanf / fscanf_s difference in behaviour
I'm puzzled by the following difference in behaviour:
// suppose myfile.txt contains a single line with the single character 's'
errno_t res;
FILE* fp;
char cmd[81];
res = ...
2
votes
2answers
330 views
How to build MTd projects which use MDd dlls in VS2005
I am building my application in Visual Studio 2005, using project properties ->c/c++->CodeGeneration->RuntimeLib: MTd (using static CRT library-LIBCMTD). The application is using 3rd party dlls and ...
2
votes
1answer
692 views
How do I use a VBscript to determine if the monitor(s) connected to a machine is an LCD or CRT?
I am trying to add info to a VBscript that will determine if the monitor(s) connected to the current machine is an LCD or CRT. I know I can get the EDID info from HKLM\System\CCS\Enum\DISPLAY but I ...
2
votes
2answers
121 views
_nolock CRT functions
I have recently discovered the existence of _nolock functions, and I am surprised by how little info I can find on these. It says it increases performance, but I can't find any benchmark. It also says ...
1
vote
0answers
36 views
How can I make Keil RealView ARM MDK (for Cortex-M3) work with BOTH retargeting(to USART) and STL?
I've been searching for a workaround for days. So far no luck.
What I use:
STM32F103VET6
J-Link
RealView MDK-ARM v4.12
Both C and C++ code in my program
Before I included STL in my code, ...
1
vote
2answers
85 views
using _set_se_translator and compilation flags
Documentation states that "You must use /EHa when using _set_se_translator.".
My question is: should /EHa be used for all files in project/ all files in project that catch exceptions or just in the ...
1
vote
0answers
135 views
get LCID from string
How to get LCID from string like "en-US"?
I know about GetLocaleInfoEx function, but it doesn't work on windows XP.
Can I get LCID from CRT locale?
UPD: Can I convert between LCID and CRT locale ...
1
vote
2answers
81 views
What's the best way to distribute your SDK if the end user is required to link against the Debug CRT?
I work for a camera company and we provide an SDK for our customers. Historically we only provided a release build of our SDK that was built against the non-debug CRT. As part of our SDK package we ...
1
vote
3answers
94 views
Concatenating C strings in linear time with crt
Say we want to concatenate const char *s[0], s[1], ... s[n-1] into one long char out[] in C.
Formally (ignoring buffer overruns, for simplicity):
void concatManyStrings(char out[], const char ...
1
vote
1answer
89 views
Why does the program who has a embeded manifest with CRT version 30729.4148 runs with 30729.6161(latest) in winsxs folder on runtime?
I have a question really really wondering.
I installed various versions of visual studio 2008 redistribution package in my machine.
Now, 30729.6161 is up to date.
In this environment, I made a ...
1
vote
1answer
89 views
Calling _CrtDumpMemoryLeaks() in managed code C#/WPF
I am writing a wrapper class to call _CrtDumpMemoryLeaks() in WPF application. I am loading a C language DLL in the WPF application and would like to see if the there are any memory leaks in the DLL ...
1
vote
1answer
138 views
Assertion error in CRT calling _osfile() in VS 2008?
I have a C++ code base that has been working for a long time. The code base was a legacy VS 2003 set of projects that I recently migrated to VS 2008. The migration seemed to be successful in that ...
1
vote
1answer
219 views
Overriding the CRT's implementation of _purecall
I'm currently working on a DLL that is an extension to a closed, working project.
I want to catch every pure-call bug, so I googled it up and found out about the _purecall handler. My question is ...
1
vote
1answer
170 views
When building a DLL; what type of CRT should I link to?
In windows; there are 2 options to link to a CRT
Multithreaded, static link
Multithreaded, dynamic link
Can someone shed some light on what is the best practice here? Should I link 'statically' to ...
1
vote
0answers
165 views
VS2008 generated dll has dependency to two different versions of CRT assembly
My VS2008 projects generates a dll and links against two other static library. Here is the generated manifest :
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
...
1
vote
2answers
375 views
Crt unit for Delphi 2010
I need Crt unit for Delphi 2010 console application (ReadKey, GotoXY, ...). Is there any Crt unit for Delphi 2010?
1
vote
1answer
130 views
Why does Python disables MSCRT assertions when built with debug mode?
Python disables MSCRT assertions for debug mode during the initialization of exceptions module when it is built in debug mode. At least from the source code, I can see Python 2.6.5 doing this for ...
1
vote
2answers
937 views
Visual Studio Linking errors. MFC, CRT order?
This questiod had been brought up numerous times, but Visual Studio never gives up to challange me.
We have an application that should be self sufficient, i.e not depend on any dlls. This is why we ...
1
vote
1answer
75 views
CRT types across process boundaries
I'm doing drag/drop out of an activeX control. On drag, I provide a CComQIPtr which has COM methods implemented to pass information to the drop target. On drop, the drop target's process calls my COM ...
1
vote
2answers
192 views
fstream file I/O question - when to close a file stream
I am trying to work out if I need to call close on a fstream object if the intial open failed.
i.e.
std::fstream strm;
strm.open( "filename" );
if( ! strm.fail() )
{
// Do something
...
1
vote
1answer
232 views
Windows update breaks dlls?
I'm compiling a project which uses multiple DLL and compiles with VS2008. After a recent windows update DLLs compiled on my computer stopped working on other computers.
After some investigation it ...
1
vote
3answers
193 views
How to convert a double to a string without using the CRT
My question has no practical application. I'm just interested. Suppose, I have a double value and I want to obtain its string representation similarly to the printf function. How would I do that ...