Git Product home page Git Product logo

nbds's People

Watchers

James Cloos avatar

nbds's Issues

It doesn't compile in 32 bits

It doesn't compile in 32 bits (Debian 6.0).

First error:
runtime/runtime.c:27: error: ‘MaxThreadId’ undeclared (first use in this 
function)

The problem is in the previous line:
static int ThreadIndex
The line doesn't terminate with ';'

if ';' is added at the end of the line, still doesn't compile:

runtime/runtime.c:14: error: ‘ThreadIndex’ defined but not used

Solution: remove the line:
static int ThreadIndex


Second error:
test/perf_test.c:70: error: cast to pointer from integer of different size

The problem is in the line:
uint64_t ops = 0;

just substitute that line by:
#ifdef NBD32
    uint32_t ops = 0;
#else
    uint64_t ops = 0;
#endif

and then it compiles.

Original issue reported on code.google.com by [email protected] on 15 Jun 2013 at 1:34

warning: 'alloc_size' attribute directive ignored

What steps will reproduce the problem?
1. make test
2.
3.

What is the expected output? What do you see instead?


What version of the product are you using? On what operating system?
There is only one version. Redhat el5


Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 14 Jun 2011 at 9:57

Invalid length used in nstring compare

What steps will reproduce the problem?
1. ns1 = "12";
2. ns2 = "123";
3. Call int ns_cmp (const nstring_t *ns1, const nstring_t *ns2);

What is the expected output? What do you see instead?
Expected response: -1
Instead: 0, due to bug in ns_cmp using ns1->len for the compare

What version of the product are you using? On what operating system?
nbds-0.4.3

Please provide any additional information below.

Original issue reported on code.google.com by [email protected] on 3 Jan 2013 at 5:54

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.