search for: strend

Displaying 2 results from an estimated 2 matches for "strend".

Did you mean: trend
2007 Nov 30
0
[LLVMdev] GC patches again
...a dummy). However, this is a fine starting point, the implementation can be tuned later. About the interface: + PooledStringPtr intern(const std::string &Str); Instead of taking an std::string, please provide two versions: PooledStringPtr intern(const char *StrStart, const char *StrEnd); and: PooledStringPtr intern(const char *CStr) { return intern(CStr, CStr+strlen(CStr); } This discourages string abuse/copying: std::string is not very efficient. Also, in PooledStringPtr, please make the accessor not return an std::string. //===-- gc-5-funattr.patch (+120 -47) ---...
2012 Jan 25
26
[PATCH v4 00/23] Xenstore stub domain
Changes from v3: - mini-os configuration files moved into stubdom/ - mini-os extra console support now a config option - Fewer #ifdefs - grant table setup uses hypercall bounce - Xenstore stub domain syslog support re-enabled Changes from v2: - configuration support added to mini-os build system - add mini-os support for conditionally compiling frontends, xenbus -