~ubuntu-branches/ubuntu/precise/mysql-5.5/precise-updates

« back to all changes in this revision

Viewing changes to storage/innobase/sync/sync0arr.c

  • Committer: Package Import Robot
  • Author(s): Marc Deslauriers
  • Date: 2015-07-16 13:59:34 UTC
  • mfrom: (1.1.18)
  • Revision ID: package-import@ubuntu.com-20150716135934-plzpylrt211i3se4
Tags: 5.5.44-0ubuntu0.12.04.1
* SECURITY UPDATE: Update to 5.5.44 to fix security issues (LP: #1475294)
  - http://www.oracle.com/technetwork/topics/security/cpujul2015-2367936.html
  - CVE-2015-2582
  - CVE-2015-2620
  - CVE-2015-2643
  - CVE-2015-2648
  - CVE-2015-4737
  - CVE-2015-4752
  - CVE-2015-4757

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*****************************************************************************
2
2
 
3
 
Copyright (c) 1995, 2011, Oracle and/or its affiliates. All Rights Reserved.
 
3
Copyright (c) 1995, 2015, Oracle and/or its affiliates. All Rights Reserved.
4
4
Copyright (c) 2008, Google Inc.
5
5
 
6
6
Portions of this file contain modifications contributed and copyrighted by
1027
1027
        ulint           i;
1028
1028
 
1029
1029
        fprintf(file,
1030
 
                "OS WAIT ARRAY INFO: reservation count %ld, signal count %ld\n",
1031
 
                                                (long) arr->res_count, (long) arr->sg_count);
 
1030
                "OS WAIT ARRAY INFO: reservation count " ULINTPF
 
1031
                ", signal count " ULINTPF "\n",
 
1032
                arr->res_count, arr->sg_count);
1032
1033
        i = 0;
1033
1034
        count = 0;
1034
1035