Date of this edition: November 14, 2008
![]() |
Changes to these notes since October 4, 2005 are highlighted below
with this icon:
|
Target OS: QNX® Neutrino® 6.3.0 or 6.3.0 SP1
Host OS: Microsoft Windows XP SP1 or SP2, 2000 SP4, or NT SP6a; Sun Solaris 7, 8, or 9; QNX® Neutrino® 6.3.0 or 6.3.0 SP1; Linux Red Hat 8, 9, or Enterprise WS 3 or 4
![]() |
|
![]() |
Make sure that Plug and Play OS is disabled in the BIOS before you run QNX Neutrino self-hosted. |
![]() |
Throughout this document, you may see reference numbers associated with particular issues, changes, etc. When corresponding with our Technical Support staff about a given issue, please quote the relevant reference number. You might also find the reference numbers useful for tracking issues as they become fixed. |
Here are the main new features in Service Pack 2:
The OS images that we ship start procnto with the -v option, so that the kernel provides you with more information when a signal terminates a process.
QNX Neutrino now supports SH7770 and SH7780 CPUs from Renesas. We now provide Board support Packages (BSPs) for the Renesas Lanbic and EDOSK 7780. There's also support for running the SH4A in 32-bit physical mode to let you use the 512 MB PCI window.
![]() |
You need to relink any SH4 binaries that you linked with QNX Neutrino 6.2.1 or earlier if you want to run them on SH4A targets. For more information, see “Known issues: BSPs, DDKs, and TDKs,” below. |
![]() |
The first time that you open a perspective in the SP2 IDE that you
previously opened in the 6.3.0 or SP1 IDE, you'll get an
ominous-sounding, but benign, message:
This is because some perspectives now include different views, or the views' names have changed. You can ignore the message, but we recommend that you reset the perspective by choosing . For example, if you don't reset the C/C++ perspective, it won't include the new Problems view, which displays errors and warnings associated with your projects. |
The new C Development Tools include:
![]() |
If you import an old QNX C/C++ project into the SP2 version of the IDE, you should enable Clean and specify the clean target in the Make Builder tab of the project properties. The Clean entry in the Project menu uses this setting, which is enabled by default for new projects. |
Debugging support and application launching in the CDT has been improved:
C/C++ project configuration and building have been improved:
It's now easier to edit and navigate through your C/C++ source files:
These exclusive QNX Momentics tools have also been updated and improved:
For more information, see the IDE User's Guide and the IDE's Welcome page.
Other changes include:
Slinger tried to keep track of how far into the directory tree it went, but this wasn't reliable and could be defeated by adding ./ before the ../ in the path. Slinger doesn't provide support to write to the filesystem, and accesses files as user ID -2. It now removes any ../ strings from the URI before processing. (Ref# 21825)
io-net -d bcm43xx [option[,option ...]] ... &
![]() |
Use commas (,) to separate the options (not spaces). |
![]() |
Experimental software is primarily provided for customers and the community to try out, and perhaps to get a glimpse of what might be in store for the future. For information about the use of experimental software, see the Commercial Software License Agreement (CSLA) or Partner Software License Agreement (PSLA) in the Licensing area of our website, http://www.qnx.com/legal/licensing/. |
The experimental items in QNX Momentics 6.3.0 are:
The 6.3.0 SP2 release contains known issues in these areas:
![]() |
We're actively investigating all known issues. |
Workaround: Use the on command to adjust the priorities of the audio and graphics drivers.
Workaround: Press F5 to start the debug shell; it simply starts fesh just after mounting the filesystems. If you want to run a consistency check a filesystem, run /sbin/chkfsys after the shell starts.
Workaround: Edit your /etc/system/enum/graphics enumerator file, search for Coral-P, and add the following line:
device(pci, ven=10cf, dev=201e) # Fujitsu Coral-PA
The Coral-PA card will be enumerated when you reboot the system.
The Coral cards don't support text mode, so on x86 systems, you need two video cards: one to use in text mode, and the Coral card.
Workaround: Relink any SH4 binaries that you linked with QNX Neutrino 6.2.1 or earlier.
For example, the following code applies an alignment of 8 to both my_long_long_t and the long long:
typedef long long my_long_long_t __attribute__((__aligned__(8)));
Workaround: Make a duplicate typedef of a dummy type:
typedef long long my_dummy_t; typedef my_dummy_t my_long_long_t __attribute__((__aligned__(8)));
Workaround: Add the following to your C++ shared library:
#include <dlfcn.h>
/*
* stick around for atexit(dtors)
* add to common.mk:
* CCFLAGS += -DSONAME_STR=\"$(notdir $(FULLNAME)$(VERSION_TAG_$(BUILD_TYPE)))\"
*/
extern void hackslash(void) __attribute__((constructor));
void hackslash(void) {
dlopen(SONAME_STR,RTLD_NOW);
}
Workaround: If you see problems (such as relocation-truncation errors) at link time when building shared objects, consider splitting your shared object into multiple shared objects.
relocation truncated to fit: R_MIPS_GPREL16
(Ref# 22822)
Workaround: Pass the -Wac,-G4 option to qcc.
#pragma pack(1)
struct five {
unsigned char a;
unsigned b;
};
struct five five;
(Ref# 5151)
Workaround: This problem doesn't affect code generated with gcc 3.3.5.
Workaround: See “Parse errors for simple code” in gcc.gnu.org/bugs.html#known.
Workaround: Disable breakpoints in code that you're single-stepping through.
Workaround: Launch pterm windows using pwm's Desktop Menu (press Alt-Enter or right-click on the desktop background) instead of using the Terminal button on the shelf. Only pterm windows started by shelf inherit the ignored SIGUSR1.
Another option is to write a wrapper around gdb to reset SIGUSR1.
Workaround: Disable stop-on-solib-events, or download the newer version of gdb from our website; log into your myQNX account, then go to in the Download Center.
Workaround: There is no workaround (other than not following this sequence of events). If gdb does run ready, you must terminate it from the Windows Task Manager. This problem will be fixed in a future version of gdb; you can get an experimental version from the Download Center on our website; look under .
Workaround: Rebuild the startup binary using QNX Momentics 6.3.0. The resulting startup will work with both 6.2.1 and 6.3.0.
Workaround: SP2 also includes version 2.10.1, and the qcc configuration files have been set up to use the older linker only if you're using gcc 2.95.3 and C++ to build shared objects.
Workaround: Use drive-letter mountpoints instead.
Workaround: Unset the NAME environment variable before you build any executables.
-I $QNX_HOST/usr/lib/gcc-lib/powerpc-unknown-nto-qnx6.3.0/3.3.5/include
to the qcc command line. This tells qcc where to find the <altivec.h> header file. GCC doesn't need this workaround, as it knows to search its own include directories. (Ref# 26109)
Workaround: Pass the -l option to usemsg.
Workaround: When you compile, use $QNX_TARGET/usr/include instead of /usr/include as the location of the system header files.
Workaround: Make sure the QNX Momentics Cygwin is in your PATH before the “real” Cygwin, or delete the Cygwin make.
This problem doesn't affect normal memory allocation, such as that using malloc(). When physical, contiguous allocations fail, malloc() and other normal memory-allocation operations still work. Also, this problem describes a situation when it isn't possible to allocate 4 MB physical, contiguous memory in a system that has 64 MB RAM. It may still be possible to allocate small chunks of physical, contiguous memory. As most device drivers need only small chunks of physical, contiguous memory (e.g. 32 KB), this problem may not be a concern for them either.
When creating a thread, the OS kernel uses _smalloc() to allocate memory for various internal data structures called objects. When the thread is destroyed, the kernel releases the memory to a pool of free objects for reuse the next time an object is needed. When a free-object pool reaches a certain size, the OS releases objects directly back into a kernel memory pool that only the kernel uses. The kernel does not return the memory to the free pool of general memory that all the processes in the system use. Physical memory can get fragmented when kernel holds on pages of memory here and there; eventually large (4 MB and greater) physical, contiguous allocations could start to fail. (Ref# 16405)
Workaround: Reserve enough physical contiguous memory before hand to make sure it's always available when needed.
Workarounds:
PPC targets have separate caches for data and instructions. If the IFS is copied (or decompressed) when the data cache is enabled, the startup needs to flush the data cache. The kernel maps in the code or data segment directly from IFS for XIP; if the cache isn't flushed, the instruction cache may be loaded incorrectly, because it's loaded from the underlying memory directly, which may be different from the contents in the data cache.
As the first-level data cache size is relatively small, the chance of running into this problem is low. We haven't seen any such crash in our kernel regression tests, and we aren't aware of any problem report from customers or internal sources which may be related to this problem. (Ref# 24783)
Workaround: If you aren't using a mini-driver, you can add the following code segment to the startup program startup/lib/ppc/cpu_startnext.c to flush the data cache for IFS areas:
void cpu_startnext(uintptr_t eip, unsigned cpu) {
unsigned start, size, vaddr, dcache_linesize;
/* First, flush the cache for ifs so that kernel can load executables
from it without problems.
*/
dcache_linesize = 1 << ppcv->cache_lsize;
start = shdr->image_paddr + shdr->startup_size;
vaddr = start & ~(dcache_linesize - 1);
size = shdr->imagefs_size + (start - vaddr);
for( ;; ) {
icache_flush(vaddr);
if(size <= dcache_linesize) break;
vaddr += dcache_linesize;
size -= dcache_linesize;
}
If you're using a mini-driver, please contact us for a fix.
Workaround: Don't use floating point emulation, or don't step over floating point instructions (use a run-to-breakpoint instead).
Workaround: Filter out the _NTO_TRACE_COMM_SMSG events by doing one of the following:
TraceEvent( _NTO_TRACE_DELEVENT, _NTO_TRACE_COMM, _NTO_TRACE_COMM_SMSG);
The side effect of filtering out these events is that the IDE's System Profiler won't be able to show you any message-passing.
Workaround: Declare them in your program; for the correct prototypes, see the entries for these functions in the Neutrino Library Reference.
The prototype should be:
paddr32_t calloc_ram (size_t size,
unsigned align)
Workaround: Edit the header file and change this line:
#define ELF64_R_INFO(s,t) ((((Elf32_Xword)(s))<<32) | ((Elf64_Xword)((t)&0xffffffff)))
to this:
#define ELF64_R_INFO(s,t) ((((Elf64_Xword)(s))<<32) | ((Elf64_Xword)((t)&0xffffffff)))
Workaround: Use the file-descriptor I/O functions instead, or call ferror() to check for errors after each call to fwrite(), fprintf(), and so on.
Workaround: In the parent process, set the appropriate permissions when you create the mapping, or in the child process, use mprotect() to explicitly establish the mapping's protection attributes.
Workaround: Include <malloc_g/malloc.h> after <malloc_g/malloc-lib.h>, as follows:
#define MALLOC_DEBUG
#define MALLOC_GUARD
#define MALLOC_PC
#include <malloc_g/malloc-lib.h>
... other includes/code that depends on MALLOC_GUARD ...
#include <malloc_g/malloc.h>
Workaround: Add code to the server to handle this message. For an example, see the online documentation for name_attach() in the Neutrino Library Reference.
If a thread that's blocked on a condition variable is canceled, the thread reacquires the mutex that's guarding the condition variable, so that the thread's cleanup handlers run in the same state as the critical code before and after the call to this function. If some other thread owns the lock, the canceled thread blocks until the mutex is available.
![]() |
Make sure that the thread's cleanup handlers unlock the mutex. |
Workaround: See the entry for tmpnam(); this function and and tempnam() use the same method for determining the directory.
![]() |
The tempnam() function's behavior doesn't conform to POSIX. |
Workaround: Under Windows, use this syntax:
mkefs buildfile outputfile
instead of redirecting the output:
mkefs buildfile > outputfile
Workaround: Specify [+raw] in the build file for any executables that you compiled with the -Nstacksize option. For more information about the raw attribute, see the entry for mkifs in the Utilities Reference.
Workaround: Here are descriptions:
Workaround: Copy /etc/profile.d/qnxsdk.sh to /etc/profile.d/qnxsdk.ksh.
Workaround: Here's the description:
Workaround: If you're using the -s option, add the -n0 option.
Workaround: See the System Analysis Toolkit User's Guide for the correct documentation.
Workaround: Be cautious when running tracelogger on procnto-800-instr kernels under low-memory conditions.
Workaround: You should remove this utility if you didn't choose to install the GPL Utilities package during the 6.3.0 installation. The files to remove are:
Workaround: We recommend you update both the IDE and SDK.
Workaround: Restart fs-cifs.
The following drivers are shipped only with the appropriate BSPs:
but their entries in the Utilities Reference don't say so. (Ref# 18023)
Workaround: To check out projects from CVS, use Check out Project, and then convert the projects; don't use Check out as..., which generates invalid configurations. (Ref# 18405)
Workaround: Close any project that you created on a remote drive before disconnecting the drive.
Workaround: Build only x86 variants with ICC.
Workaround: Manually change the compiler for the project to gcc 2.95.3, compile your project, and then change the compiler back to gcc 3.3.1.
Workaround: If you're using the coexistence feature in the IDE to target Neutrino 6.2.1, you should set the IDE to open the 6.2.1 version of PhAB. To do this, change the Path to Photon Appbuilder setting on the Appbuilder preferences dialog ().
Workaround: You can ignore this error; it doesn't affect the search results. To get rid of this error when doing file searches, create a new workspace and import your previous projects into the new workspace.
Workaround: Build everything with debugging information, or use -gdwarf-2 instead of -gstabs with gcc 2.95.3.
Workaround: If you compile with gcc 3.3.1, the second entry doesn't appear.
Workaround: Use gcc 3.3.x instead of 2.95.3.
Workaround: Add -fmessage-length=0 to the qcc or gcc command-line options.
Workaround: Here's how to do it:
Workaround: Specify a browser for the IDE to use, by choosing , and then choosing Help from the list on the left side of the dialog. In the right part of the dialog, select Custom Browser and fill in the path to the browser below.
An unexpected exception has been detected in native code outside the VM.
This is because of a memory leak in Eclipse; we've submitted a problem report to eclipse.org. (Ref# 22396)
Workaround: Upgrade your system to Red Hat Enterprise; the VM and GTK on it are more stable.
Starting QNX Development Environment /opt/qnx630/host/linux/x86/usr/qde/eclipse/eclipse: error while loading shared libraries: /opt/qnx630/host/linux/x86/usr/qde/eclipse/libXm.so.2: cannot restore segment prot after reloc: Permission denied
This message is caused by selinux (secure Linux). (Ref# 26579)
Workaround: Install an upgrade of selinux:
yum install selinux-policy-targeted
Workaround: Use the ifconfig utility to get the host's IP address.
Workaround: Start the IDE like this:
qde -vmargs -Dos.name=Linux-all-ports
Workaround: Don't use spaces or the following characters in a project name:
| ! $ ( " ) & ` : ; \ '
* ? [ ] # ~ = % < > { }
Warning: Could not get charToByteConverterClass!
This warning is generated because we are using a non-SUN VM. This is the explanation from Aonix:
The charToByteConverterClass is an internal sun.io class that the org.apache.xml.serializer.Encodings tries to access with a Class.forName(). Of course, this won't work on any non-Sun Java VM. The exception is caught and a default converter is used instead (after printing the warning message you see).
You can ignore the warning. (Ref# 25851)
Workaround: Download the Windows 98 version of usp10.dll from support.microsoft.com/kb/q249973.
Workaround: Log in as the system administrator and delete the subdirectories in the $QNX_HOST/usr/qde/eclipse/configuration directory. Then log in as a nonadministrator and start the IDE.
Workaround: There is no workaround (other than not following this sequence of events). If gdb does run ready, you must terminate it from the Windows Task Manager. This problem will be fixed in a future version of gdb; you can get an experimental version from the Download Center on our website; look under .
Workaround: Use the -ae option to procnto to enable alignment fault emulation.
Workaround: Your resource manager must handle the raw QNX messages until this is corrected.
mount: Can't mount [mount point] (type nfs) mount: Possible reason: Resource busy
If this condition doesn't go away, restart fs-nfs3. (Ref# 15078)
The options that you can use with mount include the following:
For example, if fs-nfs3 is already running, you can mount an NFS filesystem using TCP like this:
mount -t nfs -o tcp,ver3 server:/tmp /mnt
Workaround: Create a symbolic link:
ln -s /usr/qnx630/host/qnx6/x86/usr/bin/qcc /usr/bin/qcc
If this occurs, you may end up with a permanent ARP entry (i.e. one that never times out). You can also end up with permanent, incomplete ARP entries that never time out and that the TCP/IP stack doesn't attempt to resolve. If this happens, your host won't be able to communicate with one or (possibly) more remote hosts (i.e. the ones the TCP/IP application in the OS image is trying to reach).
You can check for permanent ARP entries by running the arp -an command and examining the output. The only permanent entries listed should be for the IP addresses assigned to your host's interfaces; there shouldn't be any permanent, incomplete entries. If you find a permanent entry that isn't for the IP address of an interface on your host, and you didn't explicitly create a permanent entry, then you could be encountering this problem. (Ref# 21395)
Workaround: In the buildfile for your OS image, delay the start of the TCP/IP stack or the first TCP/IP application by at least one second, by using the sleep command (e.g. sleep 1) or some other delay mechanism.
The Maintenance Patch for the Full TCP/IP Stack (Patch ID 97), which you can get from our website, addresses many of the above issues.
Workaround: We've temporarily changed the PPC version of this driver to use 64 Tx descriptors by default (on other targets, the default is 128). This may result in lost packets for high-throughput transmit operations.
Workaround: For a PtText, add this code:
int raw_text_callback( PtWidget_t *widget, void *data, PtCallbackInfo_t
*cbinfo )
{
PtSuperClassRawEvent( PtBasic, widget, cbinfo->event );
return Pt_CONTINUE;
}
When you create a PtText widget, add this code:
PtRawCallback_t text_cb = { Ph_EV_BUT_PRESS | Ph_EV_BUT_RELEASE,
raw_text_callback };
…
PtSetArg( …, Pt_CB_RAW, &text_cb, Pt_LINK_INSERT );
… = PtCreateWidget( PtText, … );
You can use similar code for a PtNumeric widget.
Workaround: If you're using the coexistence feature in the IDE to target Neutrino 6.2.1, you should set the IDE to open the 6.2.1 version of PhAB. To do this, change the Path to Photon Appbuilder setting on the Appbuilder preferences dialog ().
Workaround: Configure Windows to unblock. Once you've done this, Windows won't display the security warnings when you restart PhAB.
Workaround: In both the “Custom widget development and PhAB” and the “Photon Hook DLLs” sections, change the fourth step by replacing:
-e __cygwin_dll_entry@12
with:
-e _dll_entry@12
Workaround: Rebuild the OS image so that it uses floating-point emulation, by specifying the -fe option to procnto in the buildfile.
Workaround: Always specify the -pphoton option (gri-photon.so is currently the only plugin available).
Workaround: Don't use a memory context, or draw to one memory context, blit to another memory context, and then blit to the screen.
Workaround: Launch pterm windows using pwm's Desktop Menu (press Alt-Enter or right-click on the desktop background) instead of using the Terminal button on the shelf. Only pterm windows started by shelf inherit the ignored SIGUSR1.
Another option is to write a wrapper around gdb to reset SIGUSR1.
Workaround: Attach the following callback to the Pt_REALIZED resource of the list widget:
int
list_realized_cb( PtWidget_t *widget, ApInfo_t *apinfo,
PtCallbackInfo_t *cbinfo )
{
PtGenListWidget_t *list = (PtGenListWidget_t*)widget;
unsigned short *width;
// NOTE: Use the width that the user set in PhAB.
PtGetResource( widget, Pt_ARG_SCROLLBAR_WIDTH, &width, 0 );
// This code sets the actual sizes of scrollbar(s).
if( list->scrollbar )
PtSetResource( list->scrollbar, Pt_ARG_WIDTH, *width, 0 );
if( list->hscrollbar )
PtSetResource( list->hscrollbar, Pt_ARG_HEIGHT, *width, 0 );
// This is a workaround to make the list widget
// position (anchor) the scrollbars correctly (with the new size).
PtSetResource( widget, Pt_ARG_SCROLLBAR_WIDTH, *width - 1, 0 );
PtSetResource( widget, Pt_ARG_SCROLLBAR_WIDTH, *width, 0 );
return Pt_CONTINUE;
}
If you're using a compound widget such as a PtCombobox, use this code:
int combo_realized_cb( PtWidget_t *widget, ApInfo_t *apinfo,
PtCallbackInfo_t *cbinfo )
{
PtGenListWidget_t *list;
PtWidget_t *wp = widget;
unsigned short *width, list_width;
// NOTE: Use the width that the user set in PhAB.
PtGetResource( widget, Pt_ARG_CBOX_BUTTON_WIDTH, &width, 0 );
// Find the list widget in the combo
while( (wp = PtWidgetFamily( widget, wp )) ) {
if( PtWidgetIsClass( wp, PtList ) ) {
list = (PtGenListWidget_t*)wp;
break;
}
}
if( !wp )
return Pt_CONTINUE;
list_width = *width + 2;
// This code sets the actual sizes of scrollbar(s).
if( list->scrollbar )
PtSetResource( list->scrollbar, Pt_ARG_WIDTH, list_width, 0 );
if( list->hscrollbar )
PtSetResource( list->hscrollbar, Pt_ARG_HEIGHT, list_width, 0 );
// This is a workaround to make the list widget
// position (anchor) the scrollbars correctly (with the new size).
PtSetResource( wp, Pt_ARG_SCROLLBAR_WIDTH, list_width - 1, 0 );
PtSetResource( wp, Pt_ARG_SCROLLBAR_WIDTH, list_width, 0 );
return Pt_CONTINUE;
}
Workaround: Set QNX_HELP_HOME_PAGE to /usr/qnx630/target/qnx6/usr/help/product/momentics/bookset.html, and QNX_HELP_PATH to /usr/qnx630/target/qnx6/usr/help/product (assuming you installed QNX Momentics in the default location).
Workaround: Log in as root and type:
rm -r /var/help/usr
and then generate the index.
`eval qconfig -e -n"QNX Momentics 6.3.0"`
you get this error:
QNX_HOST=/opt/qnx630/host/solaris/sparc: is not an identifier
and your PATH isn't updated. (Ref# 20653)
Workaround: Use ksh instead of the default Solaris shell.
Workaround: use the UHCI controller instead of the OHCI.
Workaround: Modify your PATH environment variable and remove any quotation marks.
Workaround: If you want to work with Microsoft Visual Studio (MSVS) after installing QNX Momentics on the same system, do the following:
set MAKEFLAGS=saved_makeflags_value
QNX Momentics 6.2.1 introduced a new multimedia library based on an “addon” architecture, and legacy multimedia components (pre-6.2.1) were deprecated. 6.3.0 is the last release that includes these legacy components. The deprecated items are:
You should make sure that any multimedia applications that you plan to migrate to the next release of QNX Momentics use the current multimedia library. For more information, see the Multimedia Developer's Guide.
![]() |
QNX Momentics ships with the runtime components of the current multimedia library. You require the Multimedia TDK to develop new multimedia components. |
After you've installed your development suite, you'll find an extensive set of online documentation in HTML format. Go to the help menu item (e.g. in Windows XP: ) or look under the following directory:
${QNX_TARGET}/usr/help/product/momentics/bookset.html
This “roadmap” page contains links to the various HTML booksets that accompany the OS (e.g. System Architecture, Programmer's Guide, Library Reference, Utilities Reference, etc.).
You'll find the installation and release notes in the following directories:
![]() |
|
You can install and work with multiple versions of QNX Neutrino. Whether you're using the command line or the IDE, you can choose which version of the OS to build programs for. For more information, see the IDE User's Guide or the QNX Neutrino Programmer's Guide.
![]() |
Coexistence of 6.3.0 and 6.2.1 is supported only on Windows and Solaris hosts. |
If you have any questions, comments, or problems with a QNX product, please contact Technical Support. For more information, see the How to Get Help chapter of the online version of the Welcome to QNX Momentics guide, or visit our website, www.qnx.com.
![]() |
The telephone numbers and email addresses for Technical Support in the printed version of the Welcome to QNX Momentics guide are now obsolete. (Ref# 26700) |
The problems fixed in 6.3.0 SP2 include the following:
| Change | Ref # | |
|---|---|---|
| If devb-aha2 faults (e.g. if you don't have the right kind of board), the parent process now correctly gets a SIGCHLD signal. | 10388 | |
| qconn no longer crashes when you pass it long command lines. | 11712 | |
| In the IDE, the Add Include menu option now works on the word under the cursor, not just on a selected word. | 11757 | |
| When you attach the IDE's Application Profiler to a running process, the 'Thread Info' pane is now updated correctly when first drawn. | 11898 | |
| In the IDE's System Builder perspective, giving a view focus now correctly brings the cursor along with it. | 12065 | |
| In the IDE, the Thread Information view now displays the correct process and thread information. | 12120 | |
| The IDE's System Blocking Graph now shows multiple channels if they exist. | 12290 | |
| In the IDE's Application Profiler, if you run a profiled application for an ARM target, and then try to double-click on a function in the call graph, you now get the source file coming up with annotated bars, as you do on other platforms. | 12422 | |
| The IDE's Run to Cursor command now has a button on the toolbar, an entry in the Debug menu, and a hotkey. | 12466 | |
| The IDE's Memory Analysis perspective now makes it easier to find a memory leak in a shared object. | 12658 | |
| In the Neutrino-hosted IDE, the C Perspective layout now persists between sessions. | 12731 | |
| 64-bit signed division on SH platforms now works correctly with LONGLONG_MAXC in programs compiled with gcc 2.95.3. | 12772 | |
| Using the Memory Analysis perspective no longer causes the IDE to run ready. | 12794 | |
| We now ship the rb, rx, rz, sb, sx, and sz utilities that qtalk needs in ZMODEM mode. | 13050 | |
| qconn no longer crashes in a high-activity, multiple-user environment. | 13459 | |
| The gdb 5.2.1 nto_procfs interface now reads floating-point registers correctly. | 13744 | |
| In the IDE, the System Builder's New Project wizard has a clearer user interface. | 13840 | |
| Repeatedly opening a large (greater than 20 MB) log file no longer causes problems in the IDE's System Profiler. | 13952 | |
| The IDE's backtrace is no longer corrupted for non-x86 targets when attached with the debugger. | 14023 | |
| A useless right-click menu in the IDE's Profiler view has been deleted. | 14108 | |
| You can now build multiple projects in the IDE's C/C++ Projects view. | 14202 | |
| In the IDE, the C-C++ editor's Code Assist now works. | 14255 | |
| The uncompress command is now a symbolic link to gzip. | 14301 | |
| You can now control and disable the rate at which the IDE's System Information perspective collects data and refreshes the display. | 14336 | |
| If you've disabled the “Perform build automatically on resource modification” option and you've set the “Save all modified resources prior to manual build” option, the IDE no longer does a global rebuild when you start the debugger. | 14417 | |
| In the IDE's System Information perspective, the System Blocking Graph now shows the Blocked Folks, even for clients that are Send- or Reply-blocked. The information for a process's threads is now updated correctly. | 14428 | |
| In the IDE's System Information perspective, the Deliver Signal option by default sends a SIGTERM signal (which terminates the process). | 14439 | |
| In the Neutrino-hosted IDE's System Profiler, removing processes no longer causes j9 to run ready. | 14612 | |
| The IDE's Signal Information view no longer flickers excessively when you've selected more than one process. | 14635 | |
| In the IDE, the checking for duplicate files that happens when you add files to System Builder projects has improved; it now warns you about files or directories with the same name only if they're in the same directory. | 14661 | |
| In the IDE's System Builder, if you create an image with a blank in its name, the IDE no longer deletes the build script. | 14971 | |
| For QNX C/C++ projects in the IDE, you can now specify an absolute path for the Installation directory (in the project Properties dialog on the tab). | 15004 | |
| Changes that you make to a file in the IDE's Application Profiler Editor are now correctly shown in the C/C++ Editor. | 15052 | |
| In the IDE, if you create a post-mortem debug launch configuration, and then relaunch it, you're asked to select the core file again, but the IDE remembers the directory the file was in. If you cancel the selection, you're no longer switched to the Debug perspective. | 15300 | |
| Displaying a large .kev file in the System Profiler is faster in the Neutrino-hosted IDE. | 15315 | |
| Removing a process from the System Profiler no longer causes problems in the Neutrino-hosted IDE. | 15316 | |
| In the IDE's System Information perspective, the System Resources view no longer uses a lot of CPU even when closed. | 15489 | |
| In the IDE's Debug perspective, you can attach to a running process through a Debug launch configuration, not a Run launch configuration. | 15643 | |
| procnto no longer terminates a child process without notifying its parent process. | 15756 | |
| The IDE's System Resources view no longer has two columns that display the same information (i.e. heap sizes). | 16177 | |
| The IDE's Debug perspective now retains the contents of the Expressions view (i.e. the expressions you want the IDE to evaluate and display) from one invocation of the debugger to the next. | 16241 | |
| In the IDE's Debugger perspective, you can now add expressions in the Expressions view. | 16242 | |
| The IDE now properly builds the Renesas Biscayne BSP after you retrieve it from CVS. | 16302 | |
| In the Windows-hosted IDE, if you edit the search paths in the properties in the System Builder, and you click Add Workspace Path, the resulting a browser now starts at the root of your workspace, instead of at the root of your filesystem (e.g. C:). | 16590 | |
| During debugging in the IDE, the values of class members are now updated correctly in the Variables view on SH platforms, but only if you're using gcc 3.3.5 and the default debug options. | 16630 | |
| The IDE's Build action toolbar button now has a tool tip. | 16689 | |
| The IDE no longer blocks when qconn takes a long time to respond. | 16701 | |
| In the IDE's System Information perspective, a process's heap usage is now updated properly in the System Summary view. | 16792 | |
| In the IDE's System Information perspective, the information about the system memory is now updated in the System Summary view. You can manually refresh the information, or you can schedule an update by using the Update Control view. | 16793 | |
| The IDE's System Profiler now provides hover information for thread events when the process is unexpanded. | 16820 | |
| In the IDE, when the Target Navigator is refreshed, it no longer jumps to the currently selected item. | 16937 | |
| In the Signals view in the IDE's Debugger, changing filters no longer deselects the view and the IDE itself. | 16938 | |
| The IDE's editor for common.mk no longer hides all text that follows #QNX internal start. It now uses folding to hide all text until the next #QNX internal end. | 17002 | |
| In the IDE's System Information perspective, the filesystem plugin now restores connections when you restart the target. | 17050 (Ticket ID 63145) | |
| In the IDE's System Profiler, you can now create a tracelog even with interrupts disabled. | 17170 | |
| In the IDE, if you select an application that depends on a shared library from another project, then click , the IDE now automatically uploads the needed shared libraries. | 17442 | |
| asyncmsg_get() no longer fails on MIPS and SH targets. | 17800 | |
| Maximizing the CPU Activity pane in the IDE's System Profiler no longer makes the IDE stop updating the editor pane or run ready. | 17853 | |
| In the IDE's System Profiler, you can now create a bookmark in the CPU Activity and Timeline panes via the right-click menu. | 17906 | |
| Linux bootp servers now let you specify a buildfile with a leading slash. The IDE's tftp server can now find /file.ifs, as well as file.ifs. | 18032 | |
| The IDE now has a “use default” option that uses the current qconfig setting to determine which version of PhAB to launch. | 18041 | |
| The “strip file” setting in the IDE's System Builder now works properly. | 18042 | |
| The IDE's Debugger now correctly updates the target label when you're stepping through the code. | 18065 | |
| The IDE's debugger now removes the old instruction pointer when you switch to disassembly and back. | 18066 | |
| In the Linux-hosted IDE, you can now drag a file from the Navigator view to File System Navigator view. | 18105 | |
| The IDE's System Profiler can now display two events at a time. | 18110 | |
| In the IDE's System Profiler, pressing Ctrl and the left or right arrow in the Timeline view no longer freezes the IDE. | 18165 | |
| Whenever you open a file in the IDE's editor, the cursor is now correctly displayed as an I-beam, and hover help now works. | 18185 | |
| If switching to disassembly fails, the IDE's debugger now displays an error message. | 18189 | |
| On SMP machines, waitpid() no longer waits indefinitely if a previous waitpid() has already picked up the status of a child process that's terminating. | 18207 | |
| qcc no longer crashes on Solaris when you're building in parallel. | 18299 | |
| If you cut or copy a file in the IDE's filesystem navigator, the paste operation now works. | 18434 | |
| The IDE's filesystem navigator now correctly keeps track as you add and remove files. | 18435 | |
| On self-hosted Neutrino systems, there's now a symbolic link from /usr/share/bison to /usr/qnx630/host/qnx6/x86/usr/share/bison | 18563 | |
| The IDE now correctly converts addresses to line information on all hosts. | 18965, 21412 | |
| In the IDE, content assist now works with functions that you declare globally. | 18983 | |
| ANT scripts now work correctly in the IDE. | 19037 | |
| In the IDE, make -d now works correctly. | 19080 | |
| The IDE no longer raises a Core Exception if a project's control files are read-only. | 19181 | |
| In the IDE's System Profiler, the user interface for choosing the event filtering when preparing to capture a log file is now clearer. | 19202 | |
| If you run mkefs and specify the type=fifo attribute, the command now creates an loadable image. | 19214 | |
| The IDE's System Profiler now displays priority information. | 19265 | |
| You can now launch a telnet session from the IDE to a target running QNX Neutrino 6.3.0. | 19282 | |
| In the IDE, you can now drag and drop into the C/C++ Projects view. | 19314 | |
| In the IDE's System Profiler, statistics that are gathered over a selection no longer miss accumulating time. | 19348 | |
| Scrolling vertically in a .kev file in the IDE's System Profiler no longer causes an error message. | 19382 | |
| 19384 | ||
| Empty lines no longer appear in the IDE's Build Make Targets dialog after you choose and run a target. | 19401 | |
| The IDE's System Profile no longer crashes when you're using split displays. | 19431 | |
| Eclipse no longer crashes when you enter a large number into the CPU Usage pane's Line Thickness field. | 19445 | |
| In the IDE's Debug perspective, the Memory view now uses a fixed-width font by default, so the columns of numbers all line up properly. | 19466 | |
| The borders of a PtRectangle widget are now drawn correctly when its fill color is transparent and its inside color isn't transparent. | 19469 | |
| The message that results when you free() or realloc() unallocated data has been corrected. | 19481 | |
| In the IDE, to convert a a QNX Project to standard Make C, you can now choose or . | 19504 | |
| The -s option to mkdir does nothing and has been removed. | 19533 | |
| In the IDE's System Profiler, if you search the results for a process name, markers are now displayed on the timeline. | 19535 | |
| In the Tools pane of the IDE's Launch Configuration dialog, when you add a tool, you can now turn the “Switch to this tool's perspective on launch” toggle both on and off. | 19545 | |
| In the IDE's C/C++ projects view, Build Make Target now works properly for Standard Make Projects. | 19580 | |
| Information in the IDE's C/C++ Outline view no longer disappears for code between #ifdef and #endif when the define is outside the C file. | 19602 | |
| The IDE's QNX C/C++ Project Property window now includes arrow buttons for switching from the Advanced view to the Regular view. | 19605 | |
| The IDE's File System Navigator now lists the permissions for directories as “Search” and not “Exec.” | 19626 | |
| The editor's marker icons are now clearer in the IDE's Code Coverage perspective. | 19641 | |
| In the IDE, if you add a code-coverage data directory to the .gcc_coverage_data directory, the code-coverage tool now notices the new session correctly. | 19642 | |
| Our implementation of gzip now handles large (64-bit) files and the most recent GNU gzip archives. | 19651 | |
| In the IDE's System Profiler, filtered events are no longer displayed on a collapsed process timeline. | 19655 | |
| In the IDE, if you set up a postmortem debugging session for a QNX C Application project, you no longer get a “[Debugger]: No debugger available” message when you select your application. | 19664 | |
| The Find button in the IDE's System Profiler is no longer ghosted after the dialog loses and regains focus. | 19694 | |
| The __builtin_return_address() function now works correctly for SH targets using gcc 2.95.3. | 19706 | |
| When you're building a project in the IDE, the Progress Information dialog now displays the correct make command. | 19708 | |
| In the IDE's System Information perspective, newly started processes are now displayed in the System Blocking view. | 19720 | |
| In the IDE's Memory Analysis perspective, right-clicking in the Error Events Tree when the list is empty no longer causes a null-pointer exception. | 19742 | |
| The IDE's Convert C/C++ Project dialog no longer gets too large when you're working with many projects. | 19743 | |
| Corrected the title of the IDE's Build Make Target dialog. | 19752 | |
| In the IDE's System Profiler, you no longer get an “Uploading Error: Open No such file or directory” message the first time you start a kernel event trace on a target | 19754 | |
| In the IDE's Memory Analysis perspective, if you log memory events from processes with identical IDs on different systems, the IDE now displays the data from both processes correctly. | 19794 | |
| In the IDE, you can now paste copied text in the Find pane after searching. | 19795 | |
| In the IDE's Memory Analysis perspective, adding an artificial target no longer causes an exception. | 19798 | |
| The IDE no longer runs ready because of #define directive in a C++ program. | 19808 | |
| The IDE is now better at handling broken metadata. | 19809 | |
| The default C++ options for gcc 2.95.3 now include -D_PTHREADS=1. | 19811 | |
| In the IDE's System Profiler, filtering out event owners no longer causes the scrollbar to be set incorrectly. | 19913 | |
| In the IDE's New Project Wizard, the dialog name and description now reflect the type of project you chose. | 19936 | |
| In the Neutrino-hosted IDE, moving the Help window out of focus no longer corrupts the window contents. | 19944 | |
| phs-to-pcl now creates better-quality lines and circles. | 19967 | |
| If you change a container's name right after you create the project, the IDE no longer loses the build-configuration information. | 19982 | |
| In the IDE's System Profiler, using the arrow keys to navigate through the events now works correctly. If you filter out some events, they're now filtered out even after you scroll or zoom. | 19989 | |
| In the IDE's CVS perspective, if you choose , the IDE now retains the list of variants to build. | 19992 | |
| The IDE no longer gives a “string index out of range” error when you open a project's properties. | 19995 | |
| In the IDE, the preference option for determining the telnet command now includes a Browse button for selecting the binary to launch on connections. | 19999 | |
| If you edit the advanced properties for a QNX C/C++ project, select a category other than “General options,” and then click the project folder, the category name no longer changes back to “General options.” | 20004 | |
| If you check out a project in the IDE's CVS view, the IDE no longer creates a new empty project and asks if you want to overwrite it. | 20042 | |
| In the IDE, you can create an empty file in a library project and link it by using the Extra Object Files in the project properties Linker tab. The field where you can type the filename now has a more descriptive label. | 20049 | |
| When you import a System Builder project by copying an existing .bld file from a previous installation, the project is now properly converted. | 20073 | |
| A Resource Exception error log is no longer generated when you convert a CVS project into a QNX C++ Library project. | 20081 | |
| In the IDE, if you build a container project, the error message that's displayed if the IDE can't an included project has been improved. | 20085 | |
| The IDE now has “All” and “All enabled” options for variants in container projects. | 20121 | |
| In the IDE, if you choose , you can now choose a directory by typing in the Directory Field field. | 20123 | |
| On Windows hosts, /tmp is now always mounted to C:\tmp. | 20130 | |
| In the Project Properties dialog in the IDE, if you change a lib.a project into a lib.so project, the “library shared object name” on the Linker tab is now updated when you click the Apply button. | 20136 | |
| The IDE's System Builder can now find the libraries needed to build the audio drivers for the Renesas Big Sur/Amanda BSP. | 20142 | |
| In the IDE's System Profiler, if you set the Tracing Method to “Iterations,” using the default value of 32 iterations no longer creates an invalid .kev file. | 20147 | |
| The IDE's System Profiler no longer incorrectly claims to have run out of memory when you're working with a large tracebuffer file. | 20264 | |
| When you create new variants for BSP projects, the variant folder now gets the correct name. BSP projects also no longer ignore any advanced properties when building. | 20268 | |
| The IDE System Profiler's Preferences dialog no longer lets you enter invalid text. | 20278 | |
| In the IDE's System Information perspective, the Signal Information view now displays its data correctly. | 20282 | |
| In the IDE, if you create a project, delete it from the workspace but not from the filesystem, and then reimport it into the workspace, the selected variants now remain checked. | 20359 | |
| In the IDE, if you open a QNX project, add extra include paths, and then add another project folder, the parser can now interpret files from the new extra path. | 20365 | |
| The non-x86 3.3.1 versions of the gcc driver and cc1plus, along with /lib/gcc/2.95.3/libstdc++.so and /lib/gcc/3.3.1/libstdc++.so now have use -i information. | 20380 | |
| usemsg now reports an ldrel failure as a failure. | 20403 | |
| The Mozilla web server now properly handles a change in graphics mode. | 20441 | |
| In the IDE's System Profiler, if you right-click in the Timeline (or any other) pane, select , click on a color selector, and then immediately click on the corresponding item in the visible column, you're now correctly given a choice between true and false instead of a color selector. | 20448 | |
| In the IDE, if you create a QNX library project and a QNX application project, and want to link the application against the library, and you specify the library and the library path through the application's project settings by using the Project button under Extra Library Paths to do this, the IDE can now find the library and build the application. | 20496 | |
| The IDE now correctly saves the container reference information in the .cdtproject file. | 20530 | |
| The IDE's File System Navigator is now called the Neutrino File System Navigator. | 20534 | |
| Scrolling has improved in the IDE's System Profiler. | 20614 | |
| Scrolling in the IDE System Profiler's event window now works properly when you've zoomed in. | 20628 | |
| The IDE's System Profiler now provides a more useful name for its marker in the Tasks view. | 20646 | |
| If you delete a target in the Target Navigator, the IDE now prompts you to confirm the deletion. | 20667 | |
| The IDE's code coverage report now includes the source code. | 20674 | |
| The obsolete Library tab in the IDE's dialog has been removed. | 20687 | |
| The IDE's Code Coverage report no longer has problems with special character strings (e.g. &, ++) in class names. | 20691 | |
| A menu entry for debugging purposes has been removed from the CPU Usage menu in the IDE's System Profiler. | 20711 | |
| A priority of 255 is now displayed correctly in the IDE's Process Information view. | 20712, 23384 | |
| In the Neutrino-hosted IDE, you can now set the QNX Build Environment for a standard C/C++ project. | 20717 | |
| In the IDE's System Profiler, you no longer get a null-pointer exception when you open a log file. | 20734 | |
| In the IDE, resetting a target while a File System Navigator is open no longer causes a socket error. | 20766 | |
| In the IDE, if you convert a standard C or C++ project into a QNX C/C++ project, targets such as Build, Clean, and Rebuild are now retained. | 20771 | |
| If a file such as common.mk is read-only, the IDE now tells you so and offers to change it when you try to save your project's properties. | 20773 | |
| gcc no longer hangs when you compile a large module for little-endian SH. | 20859 | |
| In the IDE, temporary binaries are now removed properly from the workspace when you uncheck Use unique name in the Download tab of the launch configuration. | 20889 | |
| phs-to-ps now correctly lines up columns in monospaced fonts that include international characters. | 20898 | |
| The IDE's launcher no longer gets a “Load lib...” error when you try to automatically find needed shared libraries in the launch configuration. | 20905 | |
| In the IDE, post-builds now run correctly. | 20913 | |
| In the IDE, if you look at the advanced properties for a QNX C/C++ project and choose a source file, the Linker tab is no longer displayed (since there aren't any link options on the file level). | 20930 | |
| ntomips-gdb no longer crashes when you're debugging a core file and performing a -data-list-changed-registers mi command. | 20939 | |
| In the IDE, when you import a container project, and any projects underneath can't be found, the error mark now displayed at both the project and container levels. | 20943 | |
| The Content Assist command in the IDE's C/C++ editor no longer inserts a second occurrence of the selected function's name. | 20959 | |
| In the IDE, the C/C++ Editor's Add Include command now puts the #include lines in the correct place. | 20960 | |
| On Neutrino hosts, the IDE's Debugger no longer gives you an error message when you try to set a breakpoint's ignore count to a value from 1 to 9. | 20965 | |
| The IDE Debugger's Variables view is now better at displaying and handling variables like char *argv[]. | 20967 | |
| In the Neutrino-hosted IDE, text that you cut and paste in the Find dialog is no longer pasted in the editor. | 20978 | |
| The IDE's Memory Analysis tool now correctly translates memory events (errors) generated by running with the memory trace tool back to source addresses. | 20979 | |
| The coverage bars in the IDE's Code Coverage reports are now displayed correctly. | 20984 | |
| In the IDE, setting properties for a renamed project doesn't occasionally fail or result in errors anymore. | 20986 | |
| The messages that the malloc_h library gives have been improved. | 20987 | |
| In the IDE's Application Profiler, the editor annotations are now displayed on the correct line of code. | 20998 | |
| The IDE's Code Coverage Session view no longer collapses trees unexpectedly. | 21000 | |
| In the IDE, if you combine code coverage sessions, you no longer lose some of the data. | 21001 | |
| In the IDE, code coverage now works better for C++, but only if you use gcc 3.3.x, not 2.95.3. | 21002 | |
| In the IDE, the colors are now used consistently in the code-coverage session and the editor. | 21003 | |
| In the IDE's Code Coverage perspective, the Save entire report button now produces a useful report. | 21004 | |
| qconn no longer occasionally crashes if multiple people are doing code coverage, application profiling, or memory analysis on a shared target. | 21006 | |
| The names of the files in the IDE's System Profiler are now clearer. | 21008 | |
| In the IDE's Trace Configuration dialog, the “State Height” column title has been changed to “Line Width” for better clarity. The dialog's title has been changed from “All Event Properties” to “Timeline State Properties” as well. | 21012 | |
| Pressing Ctrl-Select in the wrong place in the IDE's System Profiler no longer makes the IDE run ready. | 21015 | |
| It no longer takes as long to attach with the debugger to a memory event in the IDE's Memory Analysis perspective. | 21022 | |
| In the IDE's Application Profiler, launching is now a nonblocking, background activity. | 21023 | |
| The IDE now displays the code-coverage percentages correctly on Windows XP hosts. | 21030 | |
| In the IDE's C/C++ editor, if you use Ctrl-V to paste some text, the column number in the status bar is now updated correctly. | 21036 | |
| The 6.3 IDE now works with the 6.2.1 versions of mkefs and mkifs. | 21054 | |
| In the Build Console preferences in the IDE's C/C++ Development perspective, the minimum number of lines for the Build console is 10; the dialog now displays the correct range. | 21074 | |
| The IDE's System Information perspective now displays process IDs, not just process names. | 21132 | |
| The devc-ser* drivers now generate Ctrl-C interrupts properly when you're using esh. | 21148 | |
| The IDE's System Profiler now unbundles the idle thread's CPU usage from that for the rest of procnto. | 21175 | |
| The Timebar in the IDE's System Profiler editor now provides hover help to indicate which display is active. | 21176 | |
| The IDE's Code Coverage no longer tries to create directories on SHLE targets, and it no longer produces error messages when you compile with gcc 3.3.1. | 21208 | |
| The IDE's System Profiler now tells you if any buffers were dropped. | 21227 | |
| QWinCfg now uses an up-to-date graphic. | 21236 | |
| The PPC assembler now supports the new BookE SPRG registers. | 21286 | |
| phs-to-ps now handles transparent bitmaps correctly. | 21292 | |
| In the IDE's System Information perspective, the Launch Telnet Session window doesn't always display an IP address of 127.0.0.1 anymore. | 21309 | |
| <sys/resmgr.h> now includes the prototype for resmgr_unbind() | 21314 | |
| A duplicate declaration of vsnprintf() has been removed from <stdio.h>. | 21326 | |
| In the IDE, if you convert a standard C/C++ project into a QNX project, the project now inherits the build-variant setting from the preferences. | 21389 | |
| The Filesystem pane in the IDE's System Builder now correctly shows user-created directories that are nested inside another user-created directory called /usr when usr is at the root of the IFS filesystem. | 21394 | |
| The Filesystems area of the IDE's System Builder now sorts the entries in ascending alphabetical order. | 21396 | |
| A problem with MAP_LAZY mappings where there's no L1 pagetable for that 4 MB range when entering message passing that could cause some boards to hang has been corrected. | 21411, 22261 | |
| In the IDE's C/C++ perspective, if you choose Compile Selected and then Build Project, the IDE now builds the project if necessary. | 21450 | |
| The IDE's System Profile is now able to read tracelogger files that were generated with the ring-buffer (-r) option. | 21453 | |
| The ARM libgcc.a in 3.3.1 no longer attaches some debugging information when you're building release binaries without optimization. | 21470 | |
| In the IDE's Debugger, you no longer get a “not responding” message in the Variable view when you switch from one thread to another while debugging. | 21478 | |
| When you change the timeline colors in the IDE's System Profiler, they are now updated immediately, instead of waiting until you reload the .kev file. | 21490 | |
| LIB_SPEC is now defined correctly for Neutrino in the gcc-3.3.1 specification file. | 21544 | |
| On Windows hosts, usemsg -o no longer fails if you have a Cygwin root directory set. | 21561 | |
| cc1.exe no longer dumps stack with Scansoft code and optimization of -O. | 21568 | |
| The Event Filters right-click menu now works properly in the CPU Usage pane in the IDE's System Profiler. | 21571 | |
| Profiling using stream mode no longer fails on Solaris hosts. | 21584 | |
| Warning messages from icc are no longer parsed as errors in the IDE. | 21589 | |
| In the IDE, it's now possible to resize the panes in the advanced properties for a QNX C/C++ project, making it possible to show the entire name of a build variant. | 21590 | |
| Using I/O vectors (IOVs) with the asynchronous-messaging functions no longer causes the system to hang. | 21622 | |
| The IDE's Target Navigator no longer has problems scrolling a long list of targets. | 21670 | |
| phgrafx is no longer vulnerable to buffer-overflow attacks. | 21682 | |
| The default binary parser for new Make projects is now the QNX binary parser instead of ELF. | 21699 | |
| In the IDE's Debug perspective, enabling a conditional breakpoint after stopping at main() no longer causes the IDE to ignore the condition. | 21714 | |
| qcc no longer has problems creating a temporary directory while compiling. | 21717 | |
| When you profile a C++ application in the IDE, sampling information and the number of calls to each function are now correct. | 21738 | |
| In the IDE, having an include reference to a closed project no longer makes the build fail. | 21750 | |
| In the IDE, you no longer get a ClassNotFound exception while browsing for the upload directory on a target (i.e. by opening the Launch Configuration dialog, selecting Download page, and then selecting Browse). | 21762 | |
| chkfsys now uses less memory when checking large disks. | 21795 | |
| On starting, touchscreen drivers no longer complain about finding a graphics region with no capability data. | 21822 | |
| Slinger no longer lets a remote user access files outside of its root directory (as identified by the HTTPD_ROOT_DIR environment variable). | 21825 | |
| You can once again run tracelogger in daemon mode (-d) and specify the number of iterations to log (-n). | 21846 | |
| In the IDE's System Profiler, if you log only a few events and flush them, the events are now written out. | 21848 | |
| The gcc 2.95.3 compiler no longer issues erroneous warnings that variables defined in a function might be uninitialized. | 21863 | |
| If your project's .cdtproject file is write-protected, and you try to add or delete a build target, the IDE now displays an error message and doesn't modify anything. | 21868 | |
| In the Neutrino-hosted IDE, postmortem profiling on x86 no longer breaks with ccov enabled in the build. | 21887 | |
| Voyager now correctly displays special characters (e.g. letters with accents) in its title bar. | 21893 | 6.3.0 SP2 |
| qcc now passes all -m options to the compiler stage. | 21910 | |
| The IDE's Code Coverage report generation no longer fails on Neutrino hosts. | 21913 | |
| In the IDE, when you convert an imported project into a QNX project, the nto/cpu/variant variant directories are now used correctly. | 21940 | |
| The IDE's Process Information view now correctly displays all environment variables. | 21964 | |
| A large HTTP GET request-URI (greater than the value of PATH_MAX) no longer overflows Slinger's internal buffer and causes a fault. | 21965 | |
| QWinCfg no longer crashes when QNX_HOST or QNX_TARGET doesn't exist in the environment registry. | 21967 | |
| We corrected a typo in the IDE's Launch Configuration dialog. | 21986 | |
| The IDE no longer flags “Remarks” from the Intel C/C++ compiler (icc) as errors. The compiler uses remarks to report common, but sometimes unconventional, use of C or C++. | 22012 | |
| pax -rw now works properly on Windows hosts. | 22016 | |
| Corrected a typo in the Progress Information dialog in the IDE's Application Profiler. | 22020 | |
| In the IDE's System Profiler, scrolling horizontally on the timeline no longer causes zooming in. | 22021 | |
| In the IDE's Application Profiler, double-clicking main now correctly opens the corresponding source file of a C++ project built with icc 8.0. | 22034 | |
| In the IDE, the common.mk editor now uses folding instead of a toggle button to hide and reveal the hidden internal code. | 22044 | |
| In the IDE's System Profiler, when you zoom in on an SMP log file, the second and subsequent CPUs no longer change color to green (the default CPU1 color) when no events are present. | 22065 | |
| The snapshot of the Build and Debug Options tab of the Project Properties has been updated in the Working with Applications chapter of the Photon Programmer's Guide. | 22073 | |
| The embedded shells (esh, uesh, and fesh) have two new built-in commands: emount and ewaitfor. | 22074 | |
| Corrected the instructions for preventing users from moving or resizing an application, in the Working with Applications chapter of the Photon Programmer's Guide. | 22078 | |
| The IDE's Debugger now launches the binary on the target and gdb in parallel. | 22080 | |
| nftw() now recognizes readdir() failures and reports errors back to the caller. | 22084 | |
| ApOpenDBase() now properly handles “Alloc” widget resources. | 22091 (Ticket ID 67098) | |
| The IDE's debugger now handles conditional breakpoints in a DLL correctly. | 22097 | |
| If you create a regular C make project in the IDE, invoke the Set QNX build environment function from the C/C++ Projects view, go to the next page, and then select the system default compiler, the x86 element is no longer repeated in the architecture list. | 22101 | |
| The IDE's System Builder now recognizes backslashes as line-continuation characters. | 22123 | |
| The IDE System Builder's “strip file” option (raw) now correctly removes the usage messaeg from a program in an image filesystem. | 22152 | |
| In the IDE's Memory Events view, if you resize the columns in the Allocation Trace, Unmatched Allocations, and Unmatched Deallocations, the IDE remembers the new settings when you switch to another perspective and back again. | 22162 | |
| The IDE no longer crashes on startup after you've used su to switch users. | 22163 | |
| When you're adding new variants, the IDE now prompts you if it needs any extra information (e.g. source and header files in a variant or CPU directory). | 22166 | |
| In the IDE's C/C++ Development perspective, you can now use the Outline view to examine header files that are included in another header file. | 22180 | |
| The configuration files for the MIPS assembler now include the -G0 option, so options are now consistent for the assembler and compiler. | 22195 | |
| The malloc_g library can now detect memory leaks on MIPS targets. | 22198 | |
| In the IDE, System Builder project properties are now saved and restored properly. | 22276 | |
| Missing parentheses have been added to the definition of __PASS_AS_FLOAT() in <sh/platform.h>. | 22289 | |
| use no longer crashes with a SIGSEGV if the usage message doesn't contain a newline character. | 22299 | |
| If you mix “wide” kernel-call events into an otherwise “fast” log, the IDE now displays all the events correctly. | 22324 | |
| In the IDE's Signal Information view, if a signal is ignored at the process level, the information as to whether it is masked or unmasked for each thread is no longer lost. | 22345 | |
| We removed some undefined weak symbols from libgcc.a for gcc 3.3.1 that were being set to 0, causing a SIGSEGV when they were called. | 22355 (Ticket ID 67274) | |
| 64-bit division no longer has problems on SH-4, using gcc 3.3.1. | 22363 | |
| The IDE's Signal Information view now properly displays pending signals. | 22365 | |
| In the IDE's System Profiler, you can now scroll the Trace Timeline when you've zoomed in. | 22379 | |
| The coverage annotation at the end of a program is now accurate in the IDE's Code Coverage perspective. | 22391 | |
| procnto-smp no longer shuts down or runs out of interrupt events during a compiler system test. | 22400, 22455, 22469 | |
| In the IDE's System Profiler, the CPU Usage and CPU Activity plugin values now add up correctly. | 22410 | |
| The _amblksiz variable once again works properly. | 22478 (Ticket ID 67168) | |
| ntoppc-gcc-3.3.1 no longer defines __svr4__. | 22504 | |
| devc-serpsc no longer runs out of interrupts on the Freescale Lite5200EVB. | 22630 | |
| qconn no longer hangs when several people use the IDE's Target Navigator to connect to the same target. | 22635 | |
| In the IDE's System Profiler, logging with the minimum number of iterations no longer logs forever. | 22640 | |
| When you link an extra library in the IDE, the EXTRA_LIBPATH is now set correctly. | 22644 | |
| ldbootstrap.exe no longer randomly crashes when building startup-bios. | 22647 | |
| In the IDE, local code completion now works correctly on QNX C++ project with the icc 8.1 or gcc 3.3.5 compiler. | 22669 | |
| PhAB no longer causes j9 to hold 92-98% of the CPU when working with the IDE. | 22679 (Ticket ID 66319) | |
| When you build a Container project in the IDE, the top-level container no longer reports a Pass when some projects fail. | 22720 | |
| pci-mgt5200 now supports the Silicon Motion Lynx chipset | 22732 | |
| When you're building a QNX C/C++ project in the IDE, release binaries are no longer displayed as being debug versions if you change the build variants in the properties from Debug to All. | 22739 | |
| In the IDE's System Profiler, selection in the timeline is now based on the nearest event instead of the nearest, next event. | 22872 | |
| ntosh-gdb.exe no longer hangs when you try to step over a bad pointer assignment. | 22874 | |
| If a container project is read-only, and you try to save it, the IDE now asks if you want to make your project read-write. | 22888 | |
| In the IDE's Container Import Wizard, the Location button is now enabled all the time. | 22890 | |
| We addressed a rare corner case where many equally sized, noncontiguous, RAM sections in the syspage (8×4 MB) could have resulted in a kernel error assertion during bootstrapping on ARM or x86 targets. | 22907 | |
| The IDE's System Optimizer dialog no longer always displays “No libraries can be removed.” | 22923 | |
| hogs no longer crashes in a system with more than 200 processes. | 22950 | |
| If you edit the properties of an OS image in the IDE's System Builder perspective, the combobox of procnto variants is now correctly filled in. | 22957 | |
| A typo has been fixed in the error message that appears in the IDE's QNX C/C++ Properties dialog when you select more than one variant for code coverage. | 22961 | |
| Code-coverage comments now appear correctly in generated reports in the IDE. | 22965 | |
| We fixed a typo in an IDE error message that appears when you choose Import QNX Sources but don't select any packages. | 22968 | |
| If you use gcc 3.3.1 to create an SH4 debug variant, the IDE's Code Coverage perspective now updates the coverage information when you launch using the debugger. | 22973 | |
| A typographical error has been corrected in the Launch Configuration's Tool tab in the IDE. | 22974 | |
| In the IDE, removing projects from a container project's configuration no longer corrupts the container project. | 22995 | |
| The IDE no longer locks up when you delete a large number of open files from the workspace. | 22997 | |
| Including <iostream> in an application no longer results in warnings when you've set the maximum warning level in qcc or the IDE. | 22999 | |
| The SMP kernel no longer locks up while in clock_slock. | 23001 | |
| The IDE System Builder's Console View is now forced-front when you're building an image. | 23012 | |
| You can now step-over after doing a step-into in the IDE's debugger. | 23015 | |
| In the IDE, Check Dependencies now works properly when Share all project properties is off. | 23023 | |
| If you import an existing project, the IDE now preserves the Check Dependencies On status in the right-click menu. | 23025 | |
| The Photon libraries and PxLoadImage() now support all BMP formats. | 23057 | |
| You can now use Ctrl-Space in the IDE's C/C++ editor to complete the names of members of a structure. | 23059 | |
| Signal handlers that process interrupts no longer corrupt the Freescale MPC8540 CPU's count (CTR) register. | 23089 | |
| In the IDE, you no longer get a Cannot add new project: String index out of range 1 message when you create container projects. | 23104 | |
| If you use the -N option to qcc to specify the stack size, the size is now specified correctly in applications for PPC BE targets. | 23120 | |
| The Launch configuration dialog now properly restores saved target download directories. | 23124 | |
| If you change any settings in and then save your changes, they're now saved correctly. | 23128 | |
| The built-in buffer management on the receiver side of the asynchronous-messaging functions has been fixed. | 23154 | |
| If you call asyncmsg_put() on a connection ID (coid) for which the chid has gone away, the function no longer ignores the error, so it no longer ends up COND-blocked. | 23160 | |
| Dependency checking is no longer done for container projects. | 23168 | |
| Opening and closing the IDE's System Profiler editor repeatedly no longer causes the IDE to run out of memory. Memory leaks in the PaneInfo, ActionsManager, and LogView have been fixed. | 23206, 23207, 23208 | |
| A search in the helpviewer now finds all the items it should. | 23220 | |
| Generate Index in the helpviewer now picks up new items. | 23221 | |
| The IDE's Select Source Projects dialog now scrolls properly after you've imported a BSP. | 23265 | |
| The IDE no longer has problems copying shared libraries when you're running a debugging session on a target. | 23267 | |
| The IDE's System Builder now correctly imports BSPs that have both LE and BE images. | 23268 | |
| In the IDE, for QNX Projects, the default debugger is the QNX Debugger; for Standard Make projects, it's the GDB debugger. | 23277 | |
| Binaries that you build in the IDE now indicate the architecture they were built for. | 23287 | |
| As of 6.3.0, Neutrino supports 256 priorities. If you're logged in as root, nice now lets you set the priority to any value in the new range. | 23294 | |
| Drag-and-drop from the IDE's Target File System Navigator now works properly. | 23309 | |
| In the IDE's Debugger, adding global variables to the display no longer removes existing ones. | 23314 | |
| The Optimize button in the IDE's System Builder now works correctly. | 23319 | |
| In the IDE, after you disable a breakpoint (by right-clicking on it or via the Breakpoints view), it no longer flickers between being enabled and disabled. | 23321 | |
| The IDE's System Builder editor with 2 or more images now displays the contents of an embedded filesystem correctly. | 23324 | |
| The Windows-hosted IDE no longer gives a “too long command line” error when processing the common.mk file. | 22351 | |
| The IDE's System Builder now supports the prefix attribute in buildfiles. | 23394 | |
| When deleting something using the C/C++ Projects view, the IDE no longer prompts you twice for the object or claims to be deleting it twice. The object is no longer displayed afterward. | 23401 | |
| Attaching to a running process in the IDE now correctly launches the debugger. | 23402 | |
| The IDE now properly displays the mouse pointer in the Select Process pane of Attach to Running Process, even after you click Refresh. | 23404 | |
| asyncmsg_put() and asyncmsg_get() now work properly when you put multiple messages and get them later. | 23406 | |
| If you open a gmon.out file in the IDE's QNX Application Profiler, the IDE once again switches to the Application Profiler perspective. | 23408 | |
| You can now combine code-coverage sessions in the IDE. | 23409 | |
| The IDE's System Builder now lets you select the compression method to use for an OS image. | 23416 | |
| phs-to-ps no longer drops elements such as text at the end of a file. | 23418 | |
| If you use the DPI setting to increase the print quality, polygons are no longer printed with some extra stray lines. | 23420 | |
| The IDE's System Builder can now build projects whose names include spaces. | 23424 | |
| The IDE's Target Filesystem Navigator now reestablishes a socket if a previously connected target reboots. | 23429 | |
| Processes no longer appear without a name in the System Summary tab of the IDE's System Information perspective. | 23464 | |
| The IDE System Profiler's Trace Condition wizard now has a title. | 23483 | |
| In the IDE, Run As and Debug As now work for remote targets. | 23491 | |
| usemsg now properly embeds inline usage messages when building source. | 23495 | |
| The IDE's Application Profiler no longer crashes on the Renesas Biscayne. | 23560 | |
| The sendnto progress bar in the IDE now shows the correct progress when you're downloading an image to a target. | 23564 | |
| qconfig.mk now defines CP_HOST as qnx_cp -vfpc (i.e. without -u). | 23592 | |
| The instrumented kernel now properly flushed interrupt events properly, so the owner of subsequent events is now correct. | 23606 | |
| The IDE no longer occasionally hangs when you start it, and then go to the System Builder perspective. | 23616 | |
| In the IDE, “Save all modified resources automatically prior to manual build” now works correctly with container projects when the build is done from the container project's build configuration. | 23617 | |
| For io-blk.so, if you don't specify a full path for the device in the automount option, io-blk.so uses the value of its devdir option as a prefix. | 23626 | |
| All MirrorBit flash drivers now implement a 4-us delay after sending a suspend/resume command to the board. | 23629 | |
| tracelogger now works correctly when you add it to an image for PPCBE targets. | 23657 | |
| The AC97 mixer now works properly on playback on the Freescale Total5200. | 23698 | |
| waitpid() no longer forgets about execed children on SMP platforms. | 23703 | |
| Interrupts are now handled properly in the startup and kernel on SH4A targets, so the handlers are no longer invoked twice. | 23721 | |
| You can now change the kernel in the Properties view in the IDE's System Builder. | 23734 | |
| procnto no longer crashes on an SH4A processor. | 23766 | |
| In the IDE's Debug perspective, when you disconnect from a process, you no longer get an error message: The target is not suspended. | 23786 | |
| You no longer get a SIGSEGV if you call asyncmsg_put() after calling asyncmsg_connect_detach(). | 23798 | |
| The usemsg utility no longer leaves temporary files behind. | 23803 | |
| The IDE's Application Profiler no longer reports that some functions have been called when they haven't been. | 23815 | |
| gcc 2.95.3 no longer has a problem with template declarations that are nested within structs. | 23823 | |
| The inline Assembly functions in the MIPS, PPC, and SH versions of <sys/cache.h> no longer cause problems with the C++ preprocessor. | 23843 (Ticket ID 68460) | |
| The IDE's Application Profiler no longer hangs occasionally. | 23859 | |
| MsgReadv(), MsgWritev(), and devctl() comands with very little transport data (512bytes) now take less time on SH4A targets. | 23866 | |
| gcc now launches the correct version of the assembler. | 23886 | |
| A timestamp whose most significant byte is greater than 0x7FFFFFFF no longer prevents the IDE's System Profiler from loading a log file. | 23949 | |
| In the IDE's System Profiler, if you save the state format properties, you no longer lose the wide-mode format specifiers. | 23950 | |
| C++ header conflicts between icc and Neutrino have been resolved. | 23991 | |
| If you start devc-sersci with two interfaces, /dev/ser2 now works correctly. | 23993 | |
| The devg-smi5xx.so graphics driver no longer just displays a blank screen. | 23996 | |
| The debug malloc library no longer prevents ksh from forking. | 24000 | |
| The malloc debug library is now less verbose by default. | 24035 | |
| The public header files no longer contain //-style C++ comments. | 24049, 24474 | |
| mkxfs now correctly parses for the ETFS buildfile attributes. | 24147 | |
| The IDE's System Builder no longer creates the wrong directory structure when you switch build variants for a BSP. | 24175 | |
| The malloc debug library now correctly prints strrchr instead of strchr. | 24184 | |
| The ETFS filesystem no longer faults in io_fdinfo(). | 24213 | |
| In the IDE, you can now successfully synchronize a project with its CVS repository. | 24225 | |
| A problem with dependency-checking has been fixed in the IDE. | 24365 | |
| The kernel no longer crashes because of nonatomic updates to thread and timer vectors. | 24407 | |
| C++ programs that include std::cout *lt;< std::setw() no longer crash on PPC targets. | 24414 (Ticket ID 68945) | |
| In the IDE, if you delete a project, the container project it belonged to is now automatically updated so that it no longer refers to the project in its build configurations. | 24421 | |
| Large executables (larger than ~11 MB) no longer fail with an EBADFD error when loaded from either a DOS or QNX 4 filesystem on SH7770. | 24434 | |
| A conflict between kernel calls and the timer tick's interrupt that caused sporadic scheduling not to work properly has been corrected. | 24456 | |
| In the IDE, adding a usage message to a binary in a C/C++ project no longer fails when the message is located in the C file. | 24468 | |
| In the IDE, standard make projects now use the QNX Binary Parser by default. | 24564 | |
| The Windows-hosted version of the addvariant script no longer relies on xargs (which isn't included on Windows hosts). | 24569 (Ticket ID 69055) | |
| The kernel no longer crashes on Freescale 8540 boards when you're debugging applications in the IDE. | 24574 | |
| The PCI server on SH4A now supports legacy I/O devices. | 24611 | |
| The IDE's Debugger no longer displays Not Responding instead of the value of some local variables. | 24644 | |
| On PQ3 boards, the watchdog timer no longer causes the board to lock up. | 24690 | |
| The sporadic scheduler now correctly respects the replenishment limit when sending messages. | 24700 | |
| qcc -V now correctly reports which targets are available. | 24753 | |
| The IDE's Variables view now correctly displays arguments that were passed by reference. | 24871 | |
| The system uptime is now computed correctly in the IDE's System Profiler, so it's no longer reported as being greater than 100%. | 24878 | |
| qcc no longer produces empty binaries if you specify a library path but no input files. | 24997 | |
| /boot/fs now contains the SP2 version of the boot images | 25030 | |
| The C Development Tools update site is now disabled because the IDE uses a specific version of the CDT plugin. | 25049 | |
| The SMP kernel now boots properly on Intel Pentium 4 hyperthreaded machines. | 25086 | |
| The /etc/profile.d/j9.sh file is removed as part of installing SP2. It's no longer required because it's intended for j9, which we no longer ship. | 25108, 26411 | |
| fs-nfs3 now works correctly when you're using asynchronous writes and the server is using root-squashing. | 25113 | |
| The IDE now correctly generates target names when you switch the debug and release variants on and off. | 25157 | |
| The Dinkum <new.h>, <iomanip.h>, <iostream.h>, and <fstream.h> are now correctly in usr/include/cpp/embedded. | 25167 | |
| The IDE now builds a project properly after you've used Compile Selected on one of its files. | 25238 | |
| The Welcome button on the shelf now opens the documentation roadmap. | 25296 | |
| Enhanced dependency checking now works properlu for Standard Make C Projects in the IDE. | 25453 | |
| The IDE's Memory Analysis now correctly displays allocation data for SH targets. | 25470 | |
| Getting messages after putting many messages on an asynchronous channel now works correctly. | 25576 | |
| We now ship SH, PPC, and x86 variants of devn-bcm43xx.so. | 25594 | |
| In the IDE, if you add subfolders to a project and create them as links to existing folders, and then edit the project properties and add extra source paths and extra include paths that point to folders inside the previously added (linked ) folders, and then click Apply, you no longer get an exception. EXTRA_INCVPATH and EXTRA_SRCVPATH items no longer show up inside the project. | 25606 | |
| If you install QNX Momentics on 9.2 SuSE Linux, the IDE's Debug and Run pulldown menus now work as pulldowns, not switches. | 25755 | |
| If you import the Renesas Biscayne BSP into the IDE and specify a location other than the default, the build no longer fails because of missing headers and such. | 25756 (Ticket ID 69747) | |
| mketfs now correctly embeds IFS image files on Windows hosts. | 25770 | |
| The line .set PPC_UTIL_AH_INCLUDED,1 has been corrected in /usr/include/ppc/util.ah. | 25835 | |
| sendnto once again supports RAW images. | 25850 | |
| In the IDE, libraries are no longer included in the building dependencies by default. | 25868 | |
| The kernel no longer crashes when asynchronous-messaging clients disappear. | 26055 | |
| In the IDE, if you choose Check out as.... and then QNX C Project, the .cdtproject file is now created properly. | 26147 (Ticket ID 69975) | |
| When you import a file into a project in the IDE, the list items are now aligned properly. | 26208 | |
| The default versions of gcov are now set correctly. | 26213 | |
| gunzip, uncompress, and zcat are all links to gzip on Neutrino, Linux, and Solaris hosts, and copies of gzip on Windows hosts. | 26222 | |
| In the IDE, including from other projects work again when gcc 3.3.5 is selected. | 26442 | |
| In the IDE, if you create a QNX application or library project for one platform, create a folder named .abc in the variant directory, open the properties for this project, and then press OK, the IDE no longer creates a new variant, abc. | 26474 | |
| The IDE's System Profiler is no longer missing some event definitions for interrupted kernel calls. | 26524 | |
| The procmgr_event_notify() function has a new flag, PROCMGR_EVENT_PATHSPACE, that you can use to ask for notification when a resource manager adds or removes an entry (i.e. mountpoint) to or from the pathname space. | 27379 |
The documentation in SP2 includes the following fixes:
| Change | Ref # |
|---|---|
| The documentation for sin now includes more details about the output of the command. | 7358 |
| devc-ser8250 is a priority-float server, so it matches the priority of its highest send-blocked client. | 12170 |
| We updated the classifications in the Neutrino Library Reference to reflect the POSIX 1003.1 standard, 2004 edition. | 12184 |
| The munlockall() function is implemented, but currently does nothing. | 13048 |
| The times() function returns the elapsed real time, in clock ticks, of kernel uptime. | 14240 |
| ApGetImageRes() returns a pointer into the widget database; don't close the database while still using the image. If you must close the widget database, create a copy of the image (see the Photon Library Reference). | 14927 |
| The startup-* entries in the Utilities Reference now include the -j and -r options. | 15019 |
| An appendix in the HTML version of the Neutrino Library Reference now lists the classification and safety information for all functions. | 15113 |
| The entries for kernel calls in the Neutrino Library Reference now refer to the covering POSIX function. | 15282 |
| The examples in the entry for pthread_sleepon_timedwait() in the Neutrino Library Reference have been corrected. | 16031 |
| If you're copying to removable media, such as a floppy or removable disk, and the media becomes full, cp tells you that it ran out of space, and then exits. The documentation has been corrected. | 16358 (Ticket ID 62581) |
| The documentation for phrelay in the Utilities Reference now includes information about limits on the draw buffer. | 18670 |
| The description of the SELECT_FLAG_SRVEXCEPT flag has been corrected in the entry for select_attach() in the Neutrino Library Reference. | 18867 |
| There's now an entry for bindres in the Utilities Reference. | 19237 |
| If you're using widgets in a Photon application, you don't need to call PgSetFillColor() or PgSetStrokeColor(). | 19444 |
| The Utilities Reference now includes an entry for devi-tahoe. | 19513 |
| The changes (except for the language selection) that you make with phlocale go into effect when you click on the Apply or OK button. Any language change takes effect the next time you log into the system. | 19550 |
| The entry for ClockCycles() in the Neutrino Library Reference now includes a warning about wrapping the cycle counter. | 19573 |
| Serial debugging via pdebug doesn't work in some versions of Linux, including Red Hat 8 and 9. Red Hat and Suse (and probably most of the distros) run mgetty on the available serial ports by default, probably to facilitate modems and serial terminals. The IDE User's Guide now says to stop mgetty to make serial debugging work. | 19718 |
| The example for pthread_cond_timedwait() has been corrected in the Neutrino Library Reference. | 20532 |
| The maximum size for one-part message-pass via MsgSend(), MsgSendnc(), MsgReply(), or MsgReceive() is 232 - 1 (SSIZE_MAX). | 20553 |
| The entry for qnxgl_buffers_create() in the Photon Library Reference includes more details about qnxgl_attrib_set_force_hw() and qnxgl_attrib_set_hint_fullscreen(). | 20585 |
| flock() isn't a standard Unix function; its entry in the Neutrino Library Reference has been updated. | 20648 |
| qnxinstall doesn't exist on Windows hosts; the documentation has been corrected. | 20681 |
| The entry for name_attach() in the Neutrino Library Reference now says that the gns must be running before you can call name_attach(). | 20890 |
| The documentation for devn-ne2000 now includes the did, pci, and vid options. | 20914 |
| The setting of the PHINDOWSOPTS environment variable has been updated in the Using PhAB under Microsoft Windows appendix of the Photon Programmer's Guide to reflect some packaging changes made in 6.3.0. | 20918 |
| The descriptions of the arguments to rename() have been improved. | 20929 |
| The instructions in “Custom widget development and PhAB” and “Photon Hook DLLs” in the Using PhAB Under Microsoft Windows appendix of the Photon Programmer's Guide have been corrected. | 20948 |
| The instructions in “Search Paths” in the Building OS and Flash Images chapter of the IDE User's Guide have been corrected. | 21070 |
| The description and examples of inputtrap have been corrected in the Utilities Reference. | 21072 |
| The entry for PtAppAddInput() in the Photon Library Reference now describes the size argument to an input procedure. | 21100 |
| The return values for pthread_mutex_lock() have been corrected in the Neutrino Library Reference. | 21146 |
| The error codes for resmgr_unbind() have been corrected in the Neutrino Library Reference. | 21314 |
| The Conventions for Makefiles and Directories appendix of the Neutrino Programmer's Guide now describes the LIBPREF_*, LIBPOST_*, OBJPREF_*, and OBJPOST_* macros. | 21337 |
| The System Design Considerations appendix of Building Embedded Systems now has more information about Non-Maskable Interrupts (NMIs). | 21610 |
| The example has been corrected in the entry for tzset() in the Neutrino Library Reference. | 21629 |
| You'll find the Print Manager in the Launch menu's Utilities menu, not in its Configure menu. The Printing chapter of the Neutrino User's Guide has been corrected. | 21640 |
| The entries for PpLoadDefaultPrinter() and PpLoadPrinter() in the Photon Library Reference now state the correct location ($HOME/.ph/printers/default) of the default printer settings. | 21658 |
| The _cmdname() function returns a pointer to the pathname used to load the process, or NULL if an error occurred. | 21809 |
| We added documentation for mq, the server for message queues that use asynchronous messages. We made related updates to the following: the documentation for procnto (it now manages named semaphores, which mqueue used to do) in the Utilities Reference; the mq_* functions, sem_close(), sem_open(), and sem_unlink() in the Neutrino Library Reference; QNX Neutrino Microkernel chapter of the System Architecture guide; Transparent Distributed Processing Using Qnet and Writing a Resource Manager chapters of the Neutrino Programmer's Guide; Working with Files, Controlling How Neutrino Starts, and Understanding System Limits chapters of the Neutrino User's Guide. | 21823 |
| The entry for phlogin in the Utilities Reference now describes a race condition that can occur if you use the -U option. | 21874 (Ticket ID 66831) |
| The IDE Concepts chapter of the IDE User's Guide has a new section, “Starting the IDE after an update.” | 21934, 22970 |
| The link in the preface to Building Custom Widgets to the Creating a Tree Widget chapter is no longer broken. | 22015 |
| The snapshots of cpim have been updated. | 22032 |
| The Building OS and Flash Images chapter of the IDE User's Guide has been updated. | 22040 |
| The Working With Files chapter of the Neutrino User's Guide now describes the socket file type. | 22041 |
| The instructions for defining a template have been updated in the Photon Programmer's Guide. | 22049, 22071 |
| The titles of the PhAB resource editor plugin functions have been changed so that the IDE's hover help won't display their prototypes instead of those for other functions with the same names. | 22055 |
| The Test button for a PhAB module is no longer at the right end of the module's title bar; the Photon Programmer's Guide has been updated. | 22061 |
| The snapshot of the File menu has been updated in the tutorials in the Photon Programmer's Guide. | 22066 |
| The entries for ar, gcc, gcov, gdb, gprof, ld, nm, objcopy, objdump, size, strings, and strip in the Utilities Reference now include all target-specific variants (e.g. ntoarm-ar, ntox86-ar). | 22135 |
| The documentation for mkfontdir now explains how to use it on Linux and Solaris hosts. | 22155 |
| The entry for ph in the Utilities References emphasizes that your ~/.ph/phapps must be executable. | 22196 |
| The titles in the online documentation for cpim have been corrected. | 22204 |
| There are no BSPs on the 6.3 CDs; you can download them from our website. The preface of Building Embedded Systems has been corrected. | 22207 |
| There's no longer an entry for swapctl in the Utilities References because we no longer ship this utility. | 22227 |
| The entries for npm-qnet-l4_lite.so, npm-tcpip-v4.so, and npm-tcpip-v6.so in the Utilities Reference now state that you can't unmount these io-net modules. | 22231 |
| The description of daemon() in the Neutrino Library Reference has been improved. | 22244 |
| The entries for the MsgSend* functions now have links to the corresponding MsgReply* functions in the Neutrino Library Reference. | 22260 |
| The description of the ioflag member of the _io_connect structure has been corrected in the Neutrino Library Reference. | 22298 |
| We corrected the ranges of priorities and restricted priorities in the System Architecture guide. | 22317 |
| devu-kbd-amanda and devu-mouse-amanda have been removed from the documentation. | 22326 |
| We corrected the name of the Epson IJS printer in the Neutrino User's Guide. | 22347 |
| The resource types for PtScrollArea have been corrected. | 22420 |
| The “Downloading via a serial link” section in the Building OS and Flash Images chapter of the IDE User's Guide now lists the control sequences that you can use in the Terminal view. | 22430, 22929 |
| The DDK documentation now includes a link to the general “Managing source code” section of the IDE User's Guide. | 22443 |
| The DDK documentation now says that you need to run bash on Windows before running . ./setenv when you're building the drivers. | 22444 |
| The entries for the devg-* drivers in the Utilities Reference now describe the mode_opts option. | 22499 |
| The Utilities Reference now has entries for devu-kbd and devu-mouse. | 22528 |
| The Utilities References now has an entry for mkxfs that redirects you to the entries for mkefs, mketfs, and mkifs. | 22561 |
| We removed some undefined weak symbols from libgcc.a for gcc 2.95.3 that were being set to 0, causing a SIGSEGV when they were called. | 22666 (Ticket ID 67274) |
| The description for the -o option to ipfstat has been corrected in the Utilities Reference. | 22675 |
| The Application Profiling chapter of the IDE User's Guide now says that you need to run as root to collect full profiling information. | 22692 |
| The documentation for pci_find_class() now refers you to <hw/pci.h> for a list of the class codes. | 22742 |
| The PCI_* macros are defined in <hw/pci.h>; the documentation for pci_attach_device() has been corrected. | 22743 |
| The entries for spawn() and spawnp() in the Neutrino Library Reference now explain how to use a node descriptor to spawn a process on a remote node. | 22751 |
| The example of “backup server” mode in the entry for gns in the Utilities Reference has been corrected. | 22756 |
| The entry for pci_attach_device() in the Neutrino Library Reference now identifies the Busnumber and Devfunc members of the pci_dev_info structure as being input/output. | 22771 |
| We removed some x86-specific details from the documentation for pci_map_irq() in the Neutrino Library Reference. | 22789 |
| The pci_irq_routing_options() function is for x86 only. | 22790 |
| The documentation for tftpd in the Utilities Reference now includes the -p option. | 22798 |
| Added a missing “from” to the caveats for pppd in the Utilities Reference. | 22811 |
| The entry for fdisk in the Utilities Reference now describes fdisk's interactive mode. | 22829 |
| The Neutrino Library Reference now includes entries for cache_fini(), cache_init(), CACHE_FLUSH(), and CACHE_INVAL(). | 22845 |
| The documentation for sendnto now describes the -b option for setting the baud rate. | 22900 |
| The entry for PtText in the Widget Reference now describes the Pt_TEXT_BLINKING_CURSOR flag. | 22919 |
| The IDE User's Guide now warns you that, on Solaris hosts, the serial terminal view's device menu may contain duplicate entries. | 22926 |
| One of the sample build scripts in Building Embedded Systems incorrectly included waitfor /mipsle/bin. This line has been changed to waitfor /usr/bin. | 22945 |
| The Developing C/C++ Programs chapter of the IDE User's Guide now explains how to use common.mk to set up an application's usage message. | 23000 |
| The documentation for ifconfig in the Utilities Reference now states that this utility doesn't work with the tiny TCP/IP stack, npm-ttcip.so. | 23011 |
| npm-ttcpip.so is once again listed with the “N” entries in the Utilities Reference. | 23013 |
| The caveats in the documentation for npm-qnet-l4_lite.so concerning the bind option have been corrected. | 23018 |
| The documentation for the asyncmsg_* functions now includes a link to the technote on asynchronous messaging. | 23073 |
| The documentation for qcc now includes more details about the -w option. | 23126 |
| The asyncmsg_* functions are in libasynchmsg, not libc. | 23138 |
| The description of the _NTO_COF_NONBLOCK flag has been corrected in the entry for asyncmsg_connect_attach() in the Neutrino Library Reference. | 23145 |
| The “Returns” section in the entry for asyncmsg_channel_create() in the Neutrino Library Reference has been corrected. | 23153 |
| asyncmsg_flush() now sets errno to EBADF if the connection ID is invalid. | 23158 |
| The examples in the technote on asynchronous messaging have been improved. | 23164 |
| The entry for PtFSAllItems() in the Widget Reference now says who needs to free the buffer. | 23209 |
| The documentation for devh-usb.so in the Utilities Reference now says that you need to run io-usb. | 23231 |
| We corrected the name of the LOG_FTP facility in the entry for openlog() in the Neutrino Library Reference. | 23301 |
| The System Architecture guide now explains why Qnet works better on physically separate networks. | 23334 |
| The Neutrino Programmer's Guide now explains why you can run out of interrupt events. | 23335 |
| The documentation now includes index.html files that are copies of bookset.html, about.html, etc., to make it easier to use a browser to read the documentation. | 23349 |
| The description of the thread_pool_attr_t structure's block_func member has been corrected in the entry for thread_pool_create() in the Neutrino Library Reference. | 23463 |
| There's now an entry for devn-rlan2.so in the Utilities Reference. | 23558 |
| In the IDE's System Profiler, when you're setting up the logging configuration for kernel event tracing for a target running 6.2.1, you must change the setting of the Trace Statistics File combobox. The default, Generate only on the target, causes an error because it isn't supported in 6.2.1. The IDE User's Guide now tells you to change the setting to Do not generate. | 23589 |
| pthread_join() and pthread_timedjoin() don't return EINTR; their entries in the Neutrino Library Reference have been corrected. | 23594 |
| The embedded shells (esh, uesh, and fesh) have two new built-in commands: emount and ewaitfor. | 23627 |
| The Customizing Image Startup Programs chapter of the Building Embedded Systems guide now includes more information about callouts. | 23792 |
| The documentation for malloc() in the Neutrino Library Reference has more information about calling malloc() with a size of 0. | 23827 |
| The example in the documentation for procmgr_event_notify() no longer leaks memory. | 23861 |
| The examples in the Writing a Resource Manager chapter of the Neutrino Programmer's Guide now properly call ThreadCtl(). Several other errors have also been corrected. | 23892 |
| The Heap Analysis: Making Memory Errors a Thing of the Past chapter of the Neutrino Programmer's Guide now warns you that the debug malloc library uses more stack space than the regular libc allocator. | 23999 |
| The documentation for ham in the High Availability Toolkit Developer's Guide now describes the -d and -t options. | 24023 |
| You don't need to have the IPFILTER_LOG option turned on in your kernel in order for ipmon to properly work. The entry for ipmon in the Utilities Reference has been corrected. | 24032 |
| The entry for mprobe() in the Neutrino Library Reference now warns you that calling mprobe() on a pointer already deallocated by a call to free() or realloc() could corrupt the memory allocator's data structures and result in undefined behavior. | 24044 |
| The entry for mcheck() in the Neutrino Library Reference now states that a program can call mcheck() only once. | 24045 |
| The description of the otime argument to timer_timeout() has been corrected in the Neutrino User's Guide. | 24060 |
| The Neutrino User's Guide now correctly refers to UHCI instead of UCHI in the section on connecting USB hardware. | 24078 |
| 24199 | |
| Each inet6_option_* and inet6_rthdr_* function now has its own entry in the Neutrino Library Reference. | 24236 |
| The entries for nanospin*() in the Neutrino Library Reference now discourage you from using these functions for delays longer than a few milliseconds. | 24258 |
| “Version coexistence” in the IDE Concepts chapter of the IDE User's Guide now includes a section on PhAB and coexistence. | 24298 |
| The example of endian-ness in the Freedom from Hardware and Platform Dependencies appendix of the Neutrino Programmer's Guide has been corrected. | 24355 |
| The Migration appendix of the IDE User's Guide describes the Could not restore workbench layout warning that appears when you open the SP2 IDE the first time after running the SP1 version. | 24604 |
| The entry for netmgr_ndtostr() in the Neutrino Library Reference now includes the values that the function can set errno to. | 24627 |
| The entries for the dispatch_* functions in the Neutrino Library Reference now refer you to the Writing a Resource Manager chapter of the Neutrino Programmer's Guide. | 24708 |
| The documentation now correctly states that the primary QNX partition type is 79. | 24806 |
| The Debugging chapter of the IDE User's Guide now includes information about the Disassembly view. | 24847 |
| The Utilities Reference now includes an entry for addr2line. | 25018 |
| The -vmargs option to qde is for Linux, Solaris, and Windows hosts only. | 25082 |
| The Migration appendix of the IDE User's Guide now suggests you enable the Clean option in your projects' properties after importing old projects into the SP2 version of the IDE. | 25119 |
| The usage of the %1> and %2> patterns have been corrected in the entry for usemsg in the Utilities Reference. | 25178 (Ticket ID 68784) |
| The IDE User's Guide now suggests that you reset the C/C++ perspective so that the context menu displays the new launch options. | 25252 |
| The entry for su in the Utilities Reference now describes the - option. | 25385 |
| The IDE User's Guide now includes updated screenshots in the Launch Configurations chapter, because Serial Launch is no longer present in SP2. There's also a new Attach to running process launch configuration if you launch with Debug (not Run), and the Debug tab of the launch configuration has also changed since SP1. | 25449 |
| The IDE Concepts chapter of the IDE User's Guide now advises you not to start the Neutrino-hosted IDE from the command line if you've used the su command to switch to a different user. | 25615 |
| An obsolete section has been removed from the Finding Memory Errors chapter of the IDE User's Guide. | 25623 |
| The examples given for vprintf() and vfprintf() in the Neutrino Library Reference have been corrected so that they no longer generate warnings when compiled. | 25632 (Ticket ID 69628) |
| “What's new in the IDE?” in the IDE Concepts chapter of the IDE User's Guide now includes a list of the changes in QNX Momentics 6.3.0 SP1, as well as those in SP2. | 25651 |
| The IDE Concepts chapter of the IDE User's Guide now explains how to specify the browser to use for the Help system on Red Hat Enterprise Linux 4. | 25654 |
| The IDE Concepts chapter of the IDE User's Guide now explains how to start the IDE on Solaris hosts. | 25658 |
| “Starting the IDE for the first time” in the IDE Concepts chapter of the IDE User's Guide has been updated. | 25659 |
| The Conventions for Makefiles and Directories appendix of the Neutrino Programmer's Guide now describes the dll variant. | 25705 |
| The asyncmsg_get() function receives no more than five asynchronous messages from the channel. | 25787 |
| The IDE Concepts chapter of the IDE User's Guide no longer refers to a C:/QNXsdk directory that no longer exists. | 25896 |
| The entries for ClockTime() and clock_settime() in the Neutrino Library Reference now state that you can't set the monotonic clock. | 25923 |
| The IDE User's Guide and the entry for qconn in the Utilities Reference now explain how to adjust qconn's priority if it gets starved of CPU. | 25991 |
| The variants for addr2line are now listed correctly in the Utilities Reference. | 26207 |
| The entry for procmgr_event_notify() in the Neutrino Library Reference now describes the new PROCMGR_EVENT_PATHSPACE flag. | 26236 |
| The "File owenership and permissions" section in the Working with Files chapter of the Neutrino User's Guide says that if you set the sticky bit (t or T) on a binary, the OS keeps the binary in memory for “a while.” It now also explains that the exact length of time depends on what else is happening in the system. | 26245 |
| In the IDE's System Builder, the autobuild feature no longer disables (grays out) the context menu options to build your project. | 26481 |
| The entry for sloginfo in the Utilities Reference now includes the -t option, which you can use to print times with millisecond resolution. | 26482 |
| The Building OS and Flash Images chapter of the IDE User's Guide now describes the Filesystem Type item in the system properties for .efs images. | 26495 |
| The utilities and drivers associated with the Embedded Transaction Filesystem (etfsctl, fs-etfs-ram, and mketfs) are now documented in the Utilities Reference. | 26626 |
| The entry for devg-coral in the Utilities Reference now includes information about dual-head support. | 26683 |