Changeset 20647 in vbox
- Timestamp:
- Jun 16, 2009 9:58:09 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 48734
- Location:
- trunk/src/VBox/Runtime
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/generic/strcache-stubs-generic.cpp
r20360 r20647 42 42 43 43 44 44 45 RTDECL(int) RTStrCacheCreate(PRTSTRCACHE phStrCache, const char *pszName) 45 46 { … … 53 54 RTDECL(int) RTStrCacheDestroy(RTSTRCACHE hStrCache) 54 55 { 55 if (hStrCache == NIL_RTSTRCACHE) 56 if ( hStrCache == NIL_RTSTRCACHE 57 || hStrCache == RTSTRCACHE_DEFAULT) 56 58 return VINF_SUCCESS; 57 return VERR_INVALID_HANDLE;59 return RTMemPoolDestroy((RTMEMPOOL)hStrCache); 58 60 } 59 61 -
trunk/src/VBox/Runtime/testcase/Makefile.kmk
r20563 r20647 5 5 6 6 # 7 # Copyright (C) 2006-200 7Sun Microsystems, Inc.7 # Copyright (C) 2006-2009 Sun Microsystems, Inc. 8 8 # 9 9 # This file is part of VirtualBox Open Source Edition (OSE), as … … 86 86 tstSems \ 87 87 tstSemPingPong \ 88 tstRTStrCache \ 88 89 tstStrFormat \ 89 90 tstStrSimplePattern \ … … 348 349 tstSems_SOURCES = tstSems.cpp 349 350 351 tstRTStrCache_TEMPLATE = VBOXR3TSTEXE 352 tstRTStrCache_SOURCES = tstRTStrCache.cpp 353 350 354 tstStrFormat_SOURCES = tstStrFormat.cpp 351 355
Note:
See TracChangeset
for help on using the changeset viewer.