Sponsored Content
Special Forums UNIX and Linux Applications Install glibc-debug for glibc-2.11.3-17.31.1 on SLES 11 Post 302779459 by Corona688 on Tuesday 12th of March 2013 04:53:27 PM
Old 03-12-2013
Perhaps if you showed us the code that is crashing(not just the line, but some before it as well) we could point you at what you should check out in more detail.
This User Gave Thanks to Corona688 For This Post:
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

glibc 2.2.2

After installing glibc 2.2.2 on my redhat 6.1 (with all necessary updates). I try to restart but my compter say i do not existst like you deleted root account and you are root. (i have seen people doing that ;-P ). I run configure with these command --bindir=/bin --sbindir=/sbin --libdir=/lib... (1 Reply)
Discussion started by: jurrien
1 Replies

2. UNIX for Advanced & Expert Users

install glibc-2.6.1

Hi, I have downloaded glibc-2.6.1.tar.tar. But I do not know how to install it on Xubuntu. Do you know ? Thank you. (4 Replies)
Discussion started by: big123456
4 Replies

3. Programming

glibc error

Hi All, This is my first time posting on this forum. I'd like to participate actively on this list. Here we go! I'm making a little application and I'm using ncurses. After a while using it, I receive the following error and the stack trace is shown: ***glibc detected*** malloc() :... (6 Replies)
Discussion started by: lagigliaivan
6 Replies

4. UNIX for Dummies Questions & Answers

message about glibc

Hi I have a strange phenomenon on putty session connected to RHEL4 server. My session is active but without any activity for 2 or 3 hours and suddenly this message appears on the prompt : $ *** glibc detected *** free(): invalid pointer: 0xb66e0d50 *** Could you have an idea about it ? (2 Replies)
Discussion started by: madmat
2 Replies

5. Ubuntu

glibc version

I need glibc version 2.2 - 2.11 for a installation. but i got glibc 2.0-2.1 from software centre... what to do? can u help? (8 Replies)
Discussion started by: paramad
8 Replies

6. UNIX for Dummies Questions & Answers

locale and glibc and charset

what's the relationship among locale, glibc, charset, charmap and fonts? why locale needs to be generated by glibc? how? what are in the locale-archive file? and what are in font files? (0 Replies)
Discussion started by: vistastar
0 Replies

7. UNIX for Dummies Questions & Answers

Help installing GLIBC on SuSe 11.

I need help updating the glibc in my suse box. I have no clue how to do this and I am afraid of breaking this box. Can someone please give me some direction? Thanks! (2 Replies)
Discussion started by: OptimusPrime1
2 Replies

8. UNIX for Advanced & Expert Users

got error when install glibc

hi all, i am play LFS recently. but i can not go on for a an error when install glibc. here is the error log: if test -r /usr/include/gnu/stubs-32.h && cmp -s /mnt/lfs/sources/glibc-build/stubs.h /usr/include/gnu/stubs-32.h; \ then echo 'stubs.h unchanged'; \ else /usr/bin/install -c... (1 Reply)
Discussion started by: arnold.king
1 Replies

9. Programming

Hidden strcmp in glibc

In glibc in file strcmp I see a definition of strcmp function and below it there is a macro "libc_hidden_builtin_def (strcmp)". This macro "libc_hidden_builtin_def (strcmp)" looks to be defining some platform(x32-64, i386) specific implementation of strcmp. Question is when is this... (7 Replies)
Discussion started by: rupeshkp728
7 Replies

10. Red Hat

Trying to install glibc-common 686 on a x64 system

Hi, I hoping someone can help me. I am running a 64 bit RH 6.5 Server, and have to install glibc.686 for a Symantec package I need to install. A prerequisite for glibc.686 is glibc-common. I'm trying to install this manually, as it's not on our local repository, but when I try, I get the... (1 Reply)
Discussion started by: badoshi
1 Replies
SoLineDetail(3) 						       Coin							   SoLineDetail(3)

NAME
SoLineDetail - The SoLineDetail class is for storing detailed 3D line information. Instances of this class are used among other things for storing information about lines after pick operations, and for storing information returned to tessellation callbacks. SYNOPSIS
#include <Inventor/details/SoLineDetail.h> Inherits SoDetail. Public Member Functions virtual SoType getTypeId (void) const SoLineDetail (void) virtual ~SoLineDetail () virtual SoDetail * copy (void) const const SoPointDetail * getPoint0 (void) const const SoPointDetail * getPoint1 (void) const int getLineIndex (void) const int getPartIndex (void) const void setPoint0 (const SoPointDetail *const detail) void setPoint1 (const SoPointDetail *const detail) void setLineIndex (const int idx) void setPartIndex (const int idx) void incLineIndex (void) void incPartIndex (void) Static Public Member Functions static SoType getClassTypeId (void) static void cleanupClass (void) static void initClass (void) Additional Inherited Members Detailed Description The SoLineDetail class is for storing detailed 3D line information. Instances of this class are used among other things for storing information about lines after pick operations, and for storing information returned to tessellation callbacks. See also: SoRayPickAction, SoPickedPoint, SoCallbackAction Constructor &; Destructor Documentation SoLineDetail::SoLineDetail (void) Default constructor sets up an empty, non-valid detail specification. SoLineDetail::~SoLineDetail () [virtual] Destructor. Member Function Documentation SoType SoLineDetail::getTypeId (void) const [virtual] Returns the type identification of a detail derived from a class inheriting SoDetail. This is used for run-time type checking and 'downward' casting. Usage example: void fuhbear(SoDetail * detail) { if (detail->getTypeId() == SoFaceDetail::getClassTypeId()) { // safe downward cast, know the type SoFaceDetail * facedetail = (SoFaceDetail *)detail; } return; // ignore if not a SoFaceDetail } For application programmers wanting to extend the library with new detail classes: this method needs to be overridden in all subclasses. This is typically done as part of setting up the full type system for extension classes, which is usually accomplished by using the pre- defined macros available through Inventor/nodes/SoSubDetail.h: SO_DETAIL_SOURCE and SO_DETAIL_INIT_CLASS. Implements SoDetail. SoType SoLineDetail::getClassTypeId (void) [static] Returns the type for this class. Reimplemented from SoDetail. void SoLineDetail::initClass (void) [static] Initialize relevant common data for all instances, like the type system. Reimplemented from SoDetail. SoDetail * SoLineDetail::copy (void) const [virtual] Return a deep copy of ourself. Note that if the Coin library has been built as a DLL under Microsoft Windows and you use this method from application code, you must make sure that both the Coin DLL and the application executable is using the same instance of a C Run-Time (CRT) library. Otherwise, you will get memory heap corruption upon deallocating the returned instances, eventually leading to mysterious crashes. Implements SoDetail. const SoPointDetail * SoLineDetail::getPoint0 (void) const Returns SoPointDetail describing the line start point. const SoPointDetail * SoLineDetail::getPoint1 (void) const Returns SoPointDetail describing the line end point. int SoLineDetail::getLineIndex (void) const Returns the index of this line within the lineset node it is part of. int SoLineDetail::getPartIndex (void) const Returns the index of this line within the complex shape node it is part of. void SoLineDetail::setPoint0 (const SoPointDetail *constdetail) Stores information about line's start point. Used internally from library client code setting up a SoLineDetail instance. See also: getPoint0() void SoLineDetail::setPoint1 (const SoPointDetail *constdetail) Stores information about line's end point. Used internally from library client code setting up a SoLineDetail instance. See also: getPoint1() void SoLineDetail::setLineIndex (const intidx) Used internally from library client code setting up a SoLineDetail instance. See also: getLineIndex() void SoLineDetail::setPartIndex (const intidx) Used internally from library client code setting up a SoLineDetail instance. See also: getPartIndex() void SoLineDetail::incLineIndex (void) Convenience method for library client code when setting up a SoLineDetail instance to use the line index as a counter. void SoLineDetail::incPartIndex (void) Convenience method for library client code when setting up a SoLineDetail instance to use the part index as a counter. Author Generated automatically by Doxygen for Coin from the source code. Version 3.1.3 Wed May 23 2012 SoLineDetail(3)
All times are GMT -4. The time now is 04:13 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy