VirtualBox

Custom Query (16363 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (2203 - 2205 of 16363)

Ticket Resolution Summary Owner Reporter
#4505 fixed clock_gettime() returning incorrect result Mr Mop
Description

I am running Ubuntu 9.04 under VirtualBox 3.0.0.

I have found a problem that is seen with clock_gettime() On some occasions, the result of clock_gettime() will go backwards. It can be shown the this code:

#include <stdio.h>
#include <stdlib.h>
#include <time.h>

int main (int argc,char *argv[])
{
        struct timespec t;
        struct timespec ot;
        int i = 0;

        for(i = 0;i < 100000;i++)
        {
                clock_gettime(CLOCK_MONOTONIC,&ot);
                clock_gettime(CLOCK_MONOTONIC,&t);
                printf("%d time 1 secs = %lld\n",i,(long long int)ot.tv_sec);
                printf("%d time 2 secs = %lld\n",i,(long long int)t.tv_sec);
                printf("%d time 1 nsecs = %lld\n",i,(long long int)ot.tv_nsec);
                printf("%d time 2 nsecs = %lld\n",i,(long long int)t.tv_nsec);
                if(ot.tv_sec > t.tv_sec)
                {
                        printf("**** Old sec > new sec ****\n");
                        exit(-1);
                }
                if(ot.tv_nsec > t.tv_nsec)
                {
                        printf("**** Old nsec > new ssec ****\n");
                        exit(-1);
                }
        }
}
return 0;

I have tried this on other VM clients with the same version of Ubuntu, and it works fine. There is no cleverness to detect a wrap around from 999999999 nsecs to 0 nsecs, but the failure will occur before this happens.

#9332 obsolete clipboard support broken - OEL 5.6, OEL 6.1 Peter Asboeck
Description

VirtualBox 4.1.0 installed on Windows 7 64bit host.

Guests: Oracle Enterprise Linux 5.6 -> clipboard support broken
        Oracle Enterprise Linux 6.1 -> clipboard support broken
        Ubuntu 11.4 -> clipboard support OK (copy/paste between guest/host - OK)
        Fedora 14 (Laughlin) -> clipboard support OK (copy/paste between guest/host - OK)
#4270 fixed clipboard small bug -> fixed in SVN Alexey Kuznetsov
Description

vb 3.0 beta

Cutting and packing from host linux to guest linux make bad clibboard text conversion. All endlines converted to two endlines.

Look like bug with dos2unix conversion, which should be not called on linux/linux machines.

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy